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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCrawler.CatalogTargetPropertystatic final classAn implementation forCfnCrawler.CatalogTargetProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the connection for an Amazon S3-backed Data Catalog table to be a target of the crawl when using aCatalogconnection type paired with aNETWORKConnection type.default StringThe name of the database to be synchronized.default StringA valid Amazon dead-letter SQS ARN.default StringA 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 aCatalogconnection type paired with aNETWORKConnection 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
-