@Stability(value=Stable)
public static interface CfnCrawler.TargetsProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.glue.*; TargetsProperty targetsProperty = TargetsProperty.builder() .catalogTargets(List.of(CatalogTargetProperty.builder() .databaseName("databaseName") .tables(List.of("tables")) .build())) .deltaTargets(List.of(DeltaTargetProperty.builder() .connectionName("connectionName") .createNativeDeltaTable(false) .deltaTables(List.of("deltaTables")) .writeManifest(false) .build())) .dynamoDbTargets(List.of(DynamoDBTargetProperty.builder() .path("path") .build())) .jdbcTargets(List.of(JdbcTargetProperty.builder() .connectionName("connectionName") .exclusions(List.of("exclusions")) .path("path") .build())) .mongoDbTargets(List.of(MongoDBTargetProperty.builder() .connectionName("connectionName") .path("path") .build())) .s3Targets(List.of(S3TargetProperty.builder() .connectionName("connectionName") .dlqEventQueueArn("dlqEventQueueArn") .eventQueueArn("eventQueueArn") .exclusions(List.of("exclusions")) .path("path") .sampleSize(123) .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnCrawler.TargetsProperty.Builder
A builder for
CfnCrawler.TargetsProperty |
static class |
CfnCrawler.TargetsProperty.Jsii$Proxy
An implementation for
CfnCrawler.TargetsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnCrawler.TargetsProperty.Builder |
builder() |
default Object |
getCatalogTargets()
Specifies AWS Glue Data Catalog targets.
|
default Object |
getDeltaTargets()
`CfnCrawler.TargetsProperty.DeltaTargets`.
|
default Object |
getDynamoDbTargets()
Specifies Amazon DynamoDB targets.
|
default Object |
getJdbcTargets()
Specifies JDBC targets.
|
default Object |
getMongoDbTargets()
A list of Mongo DB targets.
|
default Object |
getS3Targets()
Specifies Amazon Simple Storage Service (Amazon S3) targets.
|
@Stability(value=Stable) @Nullable default Object getCatalogTargets()
@Stability(value=Stable) @Nullable default Object getDeltaTargets()
@Stability(value=Stable) @Nullable default Object getDynamoDbTargets()
@Stability(value=Stable) @Nullable default Object getJdbcTargets()
@Stability(value=Stable) @Nullable default Object getMongoDbTargets()
@Stability(value=Stable) @Nullable default Object getS3Targets()
@Stability(value=Stable) static CfnCrawler.TargetsProperty.Builder builder()
CfnCrawler.TargetsProperty.Builder
of CfnCrawler.TargetsProperty
Copyright © 2023. All rights reserved.