Interface CfnCrawler.IcebergTargetProperty

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

@Stability(Stable) public static interface CfnCrawler.IcebergTargetProperty extends software.amazon.jsii.JsiiSerializable
Specifies Apache Iceberg data store targets.

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.*;
 IcebergTargetProperty icebergTargetProperty = IcebergTargetProperty.builder()
         .connectionName("connectionName")
         .exclusions(List.of("exclusions"))
         .maximumTraversalDepth(123)
         .paths(List.of("paths"))
         .build();
 

See Also: