Interface CfnBucket.DataExportProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBucket.DataExportProperty.Jsii$Proxy
- Enclosing class:
CfnBucket
@Stability(Stable)
public static interface CfnBucket.DataExportProperty
extends software.amazon.jsii.JsiiSerializable
Specifies how data related to the storage class analysis for an Amazon S3 bucket should be exported.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBucket.DataExportProperty
static final class
An implementation forCfnBucket.DataExportProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The place to store the data for an analysis.The version of the output schema to use when exporting data.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestination
The place to store the data for an analysis. -
getOutputSchemaVersion
The version of the output schema to use when exporting data.Must be
V_1
. -
builder
-