Interface CfnBucketPropsMixin.DataExportProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBucketPropsMixin.DataExportProperty.Jsii$Proxy
- Enclosing class:
CfnBucketPropsMixin
@Stability(Stable)
public static interface CfnBucketPropsMixin.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.cfnpropertymixins.services.s3.*;
DataExportProperty dataExportProperty = DataExportProperty.builder()
.destination(DestinationProperty.builder()
.bucketAccountId("bucketAccountId")
.bucketArn("bucketArn")
.format("format")
.prefix("prefix")
.build())
.outputSchemaVersion("outputSchemaVersion")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBucketPropsMixin.DataExportPropertystatic final classAn implementation forCfnBucketPropsMixin.DataExportProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestination
The place to store the data for an analysis.Returns union: either
IResolvableorCfnBucketPropsMixin.DestinationProperty- See Also:
-
getOutputSchemaVersion
The version of the output schema to use when exporting data.Must be
V_1.- See Also:
-
builder
-