public static interface CfnBucket.DataExportProperty
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.s3.*; DataExportProperty dataExportProperty = DataExportProperty.builder() .destination(DestinationProperty.builder() .bucketArn("bucketArn") .format("format") // the properties below are optional .bucketAccountId("bucketAccountId") .prefix("prefix") .build()) .outputSchemaVersion("outputSchemaVersion") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnBucket.DataExportProperty.Builder
A builder for
CfnBucket.DataExportProperty |
static class |
CfnBucket.DataExportProperty.Jsii$Proxy
An implementation for
CfnBucket.DataExportProperty |
Modifier and Type | Method and Description |
---|---|
static CfnBucket.DataExportProperty.Builder |
builder() |
java.lang.Object |
getDestination()
The place to store the data for an analysis.
|
java.lang.String |
getOutputSchemaVersion()
The version of the output schema to use when exporting data.
|
java.lang.Object getDestination()
java.lang.String getOutputSchemaVersion()
Must be V_1
.
static CfnBucket.DataExportProperty.Builder builder()