amazonka-glue-2.0: Amazon Glue SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Glue.Types.DynamoDBCatalogSource

Description

 
Synopsis

Documentation

data DynamoDBCatalogSource Source #

Specifies a DynamoDB data source in the Glue Data Catalog.

See: newDynamoDBCatalogSource smart constructor.

Constructors

DynamoDBCatalogSource' 

Fields

  • name :: Text

    The name of the data source.

  • database :: Text

    The name of the database to read from.

  • table :: Text

    The name of the table in the database to read from.

Instances

Instances details
FromJSON DynamoDBCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.DynamoDBCatalogSource

ToJSON DynamoDBCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.DynamoDBCatalogSource

Generic DynamoDBCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.DynamoDBCatalogSource

Associated Types

type Rep DynamoDBCatalogSource :: Type -> Type #

Read DynamoDBCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.DynamoDBCatalogSource

Show DynamoDBCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.DynamoDBCatalogSource

NFData DynamoDBCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.DynamoDBCatalogSource

Methods

rnf :: DynamoDBCatalogSource -> () #

Eq DynamoDBCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.DynamoDBCatalogSource

Hashable DynamoDBCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.DynamoDBCatalogSource

type Rep DynamoDBCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.DynamoDBCatalogSource

type Rep DynamoDBCatalogSource = D1 ('MetaData "DynamoDBCatalogSource" "Amazonka.Glue.Types.DynamoDBCatalogSource" "amazonka-glue-2.0-7miPWwBHdfn8N8SvbpLgE0" 'False) (C1 ('MetaCons "DynamoDBCatalogSource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "database") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "table") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newDynamoDBCatalogSource Source #

Create a value of DynamoDBCatalogSource with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:name:DynamoDBCatalogSource', dynamoDBCatalogSource_name - The name of the data source.

$sel:database:DynamoDBCatalogSource', dynamoDBCatalogSource_database - The name of the database to read from.

$sel:table:DynamoDBCatalogSource', dynamoDBCatalogSource_table - The name of the table in the database to read from.

dynamoDBCatalogSource_database :: Lens' DynamoDBCatalogSource Text Source #

The name of the database to read from.

dynamoDBCatalogSource_table :: Lens' DynamoDBCatalogSource Text Source #

The name of the table in the database to read from.