Interface CfnExport.DestinationConfigurationsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExport.DestinationConfigurationsProperty.Jsii$Proxy
- Enclosing class:
CfnExport
@Stability(Stable)
public static interface CfnExport.DestinationConfigurationsProperty
extends software.amazon.jsii.JsiiSerializable
The destinations used for data exports.
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.*;
DestinationConfigurationsProperty destinationConfigurationsProperty = DestinationConfigurationsProperty.builder()
.s3Destination(S3DestinationProperty.builder()
.s3Bucket("s3Bucket")
.s3OutputConfigurations(S3OutputConfigurationsProperty.builder()
.compression("compression")
.format("format")
.outputType("outputType")
.overwrite("overwrite")
.build())
.s3Prefix("s3Prefix")
.s3Region("s3Region")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnExport.DestinationConfigurationsPropertystatic final classAn implementation forCfnExport.DestinationConfigurationsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()An object that describes the destination of the data exports file.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Destination
An object that describes the destination of the data exports file.Returns union: either
IResolvableorCfnExport.S3DestinationProperty- See Also:
-
builder
-