Interface CfnCrawler.CatalogTargetProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCrawler.CatalogTargetProperty.Jsii$Proxy
- Enclosing class:
CfnCrawler
@Stability(Stable)
public static interface CfnCrawler.CatalogTargetProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.glue.*; CatalogTargetProperty catalogTargetProperty = CatalogTargetProperty.builder() .connectionName("connectionName") .databaseName("databaseName") .dlqEventQueueArn("dlqEventQueueArn") .eventQueueArn("eventQueueArn") .tables(List.of("tables")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCrawler.CatalogTargetProperty
static final class
An implementation forCfnCrawler.CatalogTargetProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The name of the connection for an Amazon S3-backed Data Catalog table to be a target of the crawl when using aCatalog
connection type paired with aNETWORK
Connection type.default String
The name of the database to be synchronized.default String
A valid Amazon dead-letter SQS ARN.default String
A valid Amazon SQS ARN.A list of the tables to be synchronized.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectionName
The name of the connection for an Amazon S3-backed Data Catalog table to be a target of the crawl when using aCatalog
connection type paired with aNETWORK
Connection type.- See Also:
-
getDatabaseName
The name of the database to be synchronized.- See Also:
-
getDlqEventQueueArn
A valid Amazon dead-letter SQS ARN.For example,
arn:aws:sqs:region:account:deadLetterQueue
.- See Also:
-
getEventQueueArn
A valid Amazon SQS ARN.For example,
arn:aws:sqs:region:account:sqs
.- See Also:
-
getTables
A list of the tables to be synchronized.- See Also:
-
builder
-