interface CatalogTargetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnCrawlerPropsMixin.CatalogTargetProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnCrawlerPropsMixin_CatalogTargetProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnCrawlerPropsMixin.CatalogTargetProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnCrawlerPropsMixin.CatalogTargetProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnCrawlerPropsMixin » CatalogTargetProperty |
Specifies an AWS Glue Data Catalog target.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const catalogTargetProperty: glue_mixins.CfnCrawlerPropsMixin.CatalogTargetProperty = {
connectionName: 'connectionName',
databaseName: 'databaseName',
dlqEventQueueArn: 'dlqEventQueueArn',
eventQueueArn: 'eventQueueArn',
tables: ['tables'],
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | string | 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. |
| database | string | The name of the database to be synchronized. |
| dlq | string | A valid Amazon dead-letter SQS ARN. |
| event | string | A valid Amazon SQS ARN. |
| tables? | string[] | A list of the tables to be synchronized. |
connectionName?
Type:
string
(optional)
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.
databaseName?
Type:
string
(optional)
The name of the database to be synchronized.
dlqEventQueueArn?
Type:
string
(optional)
A valid Amazon dead-letter SQS ARN.
For example, arn:aws:sqs:region:account:deadLetterQueue .
eventQueueArn?
Type:
string
(optional)
A valid Amazon SQS ARN.
For example, arn:aws:sqs:region:account:sqs .
tables?
Type:
string[]
(optional)
A list of the tables to be synchronized.

.NET
Go
Java
Python
TypeScript