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();
-
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
CfnCrawler.CatalogTargetProperty.ConnectionName
.default String
The name of the database to be synchronized.default String
CfnCrawler.CatalogTargetProperty.DlqEventQueueArn
.default String
CfnCrawler.CatalogTargetProperty.EventQueueArn
.A list of the tables to be synchronized.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectionName
CfnCrawler.CatalogTargetProperty.ConnectionName
. -
getDatabaseName
The name of the database to be synchronized. -
getDlqEventQueueArn
CfnCrawler.CatalogTargetProperty.DlqEventQueueArn
. -
getEventQueueArn
CfnCrawler.CatalogTargetProperty.EventQueueArn
. -
getTables
A list of the tables to be synchronized. -
builder
-