interface TargetsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnCrawlerPropsMixin.TargetsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnCrawlerPropsMixin_TargetsProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnCrawlerPropsMixin.TargetsProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnCrawlerPropsMixin.TargetsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnCrawlerPropsMixin » TargetsProperty |
Specifies data stores to crawl.
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 targetsProperty: glue_mixins.CfnCrawlerPropsMixin.TargetsProperty = {
catalogTargets: [{
connectionName: 'connectionName',
databaseName: 'databaseName',
dlqEventQueueArn: 'dlqEventQueueArn',
eventQueueArn: 'eventQueueArn',
tables: ['tables'],
}],
deltaTargets: [{
connectionName: 'connectionName',
createNativeDeltaTable: false,
deltaTables: ['deltaTables'],
writeManifest: false,
}],
dynamoDbTargets: [{
path: 'path',
scanAll: false,
scanRate: 123,
}],
hudiTargets: [{
connectionName: 'connectionName',
exclusions: ['exclusions'],
maximumTraversalDepth: 123,
paths: ['paths'],
}],
icebergTargets: [{
connectionName: 'connectionName',
exclusions: ['exclusions'],
maximumTraversalDepth: 123,
paths: ['paths'],
}],
jdbcTargets: [{
connectionName: 'connectionName',
enableAdditionalMetadata: ['enableAdditionalMetadata'],
exclusions: ['exclusions'],
path: 'path',
}],
mongoDbTargets: [{
connectionName: 'connectionName',
path: 'path',
}],
s3Targets: [{
connectionName: 'connectionName',
dlqEventQueueArn: 'dlqEventQueueArn',
eventQueueArn: 'eventQueueArn',
exclusions: ['exclusions'],
path: 'path',
sampleSize: 123,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| catalog | IResolvable | (IResolvable | Catalog)[] | Specifies AWS Glue Data Catalog targets. |
| delta | IResolvable | (IResolvable | Delta)[] | Specifies an array of Delta data store targets. |
| dynamo | IResolvable | (IResolvable | Dynamo)[] | Specifies Amazon DynamoDB targets. |
| hudi | IResolvable | (IResolvable | Hudi)[] | Specifies Apache Hudi data store targets. |
| iceberg | IResolvable | (IResolvable | Iceberg)[] | Specifies Apache Iceberg data store targets. |
| jdbc | IResolvable | (IResolvable | Jdbc)[] | Specifies JDBC targets. |
| mongo | IResolvable | (IResolvable | Mongo)[] | A list of Mongo DB targets. |
| s3 | IResolvable | (IResolvable | S3)[] | Specifies Amazon Simple Storage Service (Amazon S3) targets. |
catalogTargets?
Type:
IResolvable | (IResolvable | Catalog)[]
(optional)
Specifies AWS Glue Data Catalog targets.
deltaTargets?
Type:
IResolvable | (IResolvable | Delta)[]
(optional)
Specifies an array of Delta data store targets.
dynamoDbTargets?
Type:
IResolvable | (IResolvable | Dynamo)[]
(optional)
Specifies Amazon DynamoDB targets.
hudiTargets?
Type:
IResolvable | (IResolvable | Hudi)[]
(optional)
Specifies Apache Hudi data store targets.
icebergTargets?
Type:
IResolvable | (IResolvable | Iceberg)[]
(optional)
Specifies Apache Iceberg data store targets.
jdbcTargets?
Type:
IResolvable | (IResolvable | Jdbc)[]
(optional)
Specifies JDBC targets.
mongoDbTargets?
Type:
IResolvable | (IResolvable | Mongo)[]
(optional)
A list of Mongo DB targets.
s3Targets?
Type:
IResolvable | (IResolvable | S3)[]
(optional)
Specifies Amazon Simple Storage Service (Amazon S3) targets.

.NET
Go
Java
Python
TypeScript