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.CatalogTarget

Description

 
Synopsis

Documentation

data CatalogTarget Source #

Specifies an Glue Data Catalog target.

See: newCatalogTarget smart constructor.

Constructors

CatalogTarget' 

Fields

  • connectionName :: Maybe Text

    The name of the connection for an Amazon S3-backed Data Catalog table to be a target of the crawl when using a Catalog connection type paired with a NETWORK Connection type.

  • dlqEventQueueArn :: Maybe Text

    A valid Amazon dead-letter SQS ARN. For example, arn:aws:sqs:region:account:deadLetterQueue.

  • eventQueueArn :: Maybe Text

    A valid Amazon SQS ARN. For example, arn:aws:sqs:region:account:sqs.

  • databaseName :: Text

    The name of the database to be synchronized.

  • tables :: NonEmpty Text

    A list of the tables to be synchronized.

Instances

Instances details
FromJSON CatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.CatalogTarget

ToJSON CatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.CatalogTarget

Generic CatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.CatalogTarget

Associated Types

type Rep CatalogTarget :: Type -> Type #

Read CatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.CatalogTarget

Show CatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.CatalogTarget

NFData CatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.CatalogTarget

Methods

rnf :: CatalogTarget -> () #

Eq CatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.CatalogTarget

Hashable CatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.CatalogTarget

type Rep CatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.CatalogTarget

type Rep CatalogTarget = D1 ('MetaData "CatalogTarget" "Amazonka.Glue.Types.CatalogTarget" "amazonka-glue-2.0-7miPWwBHdfn8N8SvbpLgE0" 'False) (C1 ('MetaCons "CatalogTarget'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "connectionName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "dlqEventQueueArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "eventQueueArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "databaseName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "tables") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Text))))))

newCatalogTarget Source #

Create a value of CatalogTarget 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:connectionName:CatalogTarget', catalogTarget_connectionName - The name of the connection for an Amazon S3-backed Data Catalog table to be a target of the crawl when using a Catalog connection type paired with a NETWORK Connection type.

$sel:dlqEventQueueArn:CatalogTarget', catalogTarget_dlqEventQueueArn - A valid Amazon dead-letter SQS ARN. For example, arn:aws:sqs:region:account:deadLetterQueue.

$sel:eventQueueArn:CatalogTarget', catalogTarget_eventQueueArn - A valid Amazon SQS ARN. For example, arn:aws:sqs:region:account:sqs.

$sel:databaseName:CatalogTarget', catalogTarget_databaseName - The name of the database to be synchronized.

$sel:tables:CatalogTarget', catalogTarget_tables - A list of the tables to be synchronized.

catalogTarget_connectionName :: Lens' CatalogTarget (Maybe Text) Source #

The name of the connection for an Amazon S3-backed Data Catalog table to be a target of the crawl when using a Catalog connection type paired with a NETWORK Connection type.

catalogTarget_dlqEventQueueArn :: Lens' CatalogTarget (Maybe Text) Source #

A valid Amazon dead-letter SQS ARN. For example, arn:aws:sqs:region:account:deadLetterQueue.

catalogTarget_eventQueueArn :: Lens' CatalogTarget (Maybe Text) Source #

A valid Amazon SQS ARN. For example, arn:aws:sqs:region:account:sqs.

catalogTarget_databaseName :: Lens' CatalogTarget Text Source #

The name of the database to be synchronized.

catalogTarget_tables :: Lens' CatalogTarget (NonEmpty Text) Source #

A list of the tables to be synchronized.