Interface CfnCrawler.DeltaTargetProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCrawler.DeltaTargetProperty.Jsii$Proxy
Enclosing class:
CfnCrawler

@Stability(Stable) public static interface CfnCrawler.DeltaTargetProperty extends software.amazon.jsii.JsiiSerializable
Specifies a Delta data store to crawl one or more Delta tables.

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.*;
 DeltaTargetProperty deltaTargetProperty = DeltaTargetProperty.builder()
         .connectionName("connectionName")
         .createNativeDeltaTable(false)
         .deltaTables(List.of("deltaTables"))
         .writeManifest(false)
         .build();
 

See Also: