Interface CfnCrawler.S3TargetProperty

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

@Stability(Stable) public static interface CfnCrawler.S3TargetProperty extends software.amazon.jsii.JsiiSerializable
Specifies a data store in Amazon Simple Storage Service (Amazon S3).

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.*;
 S3TargetProperty s3TargetProperty = S3TargetProperty.builder()
         .connectionName("connectionName")
         .dlqEventQueueArn("dlqEventQueueArn")
         .eventQueueArn("eventQueueArn")
         .exclusions(List.of("exclusions"))
         .path("path")
         .sampleSize(123)
         .build();
 

See Also: