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: