@Stability(value=Stable)
public static interface CfnTable.ImportSourceSpecificationProperty
extends software.amazon.jsii.JsiiSerializable
// 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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnTable.ImportSourceSpecificationProperty.Builder
A builder for
CfnTable.ImportSourceSpecificationProperty |
static class |
CfnTable.ImportSourceSpecificationProperty.Jsii$Proxy
An implementation for
CfnTable.ImportSourceSpecificationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnTable.ImportSourceSpecificationProperty.Builder |
builder() |
default String |
getInputCompressionType()
`CfnTable.ImportSourceSpecificationProperty.InputCompressionType`.
|
String |
getInputFormat()
`CfnTable.ImportSourceSpecificationProperty.InputFormat`.
|
default Object |
getInputFormatOptions()
`CfnTable.ImportSourceSpecificationProperty.InputFormatOptions`.
|
Object |
getS3BucketSource()
`CfnTable.ImportSourceSpecificationProperty.S3BucketSource`.
|
@Stability(value=Stable) @NotNull String getInputFormat()
@Stability(value=Stable) @NotNull Object getS3BucketSource()
@Stability(value=Stable) @Nullable default String getInputCompressionType()
@Stability(value=Stable) @Nullable default Object getInputFormatOptions()
@Stability(value=Stable) static CfnTable.ImportSourceSpecificationProperty.Builder builder()
Copyright © 2022. All rights reserved.