Interface CfnExport.S3DestinationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExport.S3DestinationProperty.Jsii$Proxy
- Enclosing class:
CfnExport
@Stability(Stable)
public static interface CfnExport.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.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 forCfnExport.S3DestinationPropertystatic final classAn implementation forCfnExport.S3DestinationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The name of the Amazon S3 bucket used as the destination of a data export file.The output configuration for the data export.The S3 path prefix you want prepended to the name of your data export.The 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
IResolvableorCfnExport.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
-