Interface CfnTable.ImportSourceSpecificationProperty

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

@Stability(Stable) public static interface CfnTable.ImportSourceSpecificationProperty extends software.amazon.jsii.JsiiSerializable
Specifies the properties of data being imported from the S3 bucket source to the table.

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.dynamodb.*;
 ImportSourceSpecificationProperty importSourceSpecificationProperty = ImportSourceSpecificationProperty.builder()
         .inputFormat("inputFormat")
         .s3BucketSource(S3BucketSourceProperty.builder()
                 .s3Bucket("s3Bucket")
                 // the properties below are optional
                 .s3BucketOwner("s3BucketOwner")
                 .s3KeyPrefix("s3KeyPrefix")
                 .build())
         // the properties below are optional
         .inputCompressionType("inputCompressionType")
         .inputFormatOptions(InputFormatOptionsProperty.builder()
                 .csv(CsvProperty.builder()
                         .delimiter("delimiter")
                         .headerList(List.of("headerList"))
                         .build())
                 .build())
         .build();
 

See Also: