Interface CfnExportPropsMixin.S3DestinationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExportPropsMixin.S3DestinationProperty.Jsii$Proxy
- Enclosing class:
CfnExportPropsMixin
@Stability(Stable)
public static interface CfnExportPropsMixin.S3DestinationProperty
extends software.amazon.jsii.JsiiSerializable
Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a data exports file.
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.bcmdataexports.*;
S3DestinationProperty s3DestinationProperty = S3DestinationProperty.builder()
.s3Bucket("s3Bucket")
.s3OutputConfigurations(S3OutputConfigurationsProperty.builder()
.compression("compression")
.format("format")
.outputType("outputType")
.overwrite("overwrite")
.build())
.s3Prefix("s3Prefix")
.s3Region("s3Region")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnExportPropsMixin.S3DestinationPropertystatic final classAn implementation forCfnExportPropsMixin.S3DestinationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the Amazon S3 bucket used as the destination of a data export file.default ObjectThe output configuration for the data export.default StringThe S3 path prefix you want prepended to the name of your data export.default StringThe S3 bucket Region.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Bucket
The name of the Amazon S3 bucket used as the destination of a data export file.- See Also:
-
getS3OutputConfigurations
The output configuration for the data export.Returns union: either
IResolvableorCfnExportPropsMixin.S3OutputConfigurationsProperty- See Also:
-
getS3Prefix
The S3 path prefix you want prepended to the name of your data export.- See Also:
-
getS3Region
The S3 bucket Region.- See Also:
-
builder
-