Interface CfnExportProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExportProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:46.240Z")
@Stability(Stable)
public interface CfnExportProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnExport.
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.*;
CfnExportProps cfnExportProps = CfnExportProps.builder()
.export(ExportProperty.builder()
.dataQuery(DataQueryProperty.builder()
.queryStatement("queryStatement")
// the properties below are optional
.tableConfigurations(Map.of(
"tableConfigurationsKey", Map.of(
"tableConfigurationsKey", "tableConfigurations")))
.build())
.destinationConfigurations(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())
.name("name")
.refreshCadence(RefreshCadenceProperty.builder()
.frequency("frequency")
.build())
// the properties below are optional
.description("description")
.exportArn("exportArn")
.build())
// the properties below are optional
.tags(List.of(ResourceTagProperty.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnExportPropsstatic final classAn implementation forCfnExportProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnExportProps.Builderbuilder()The details that are available for an export.default List<CfnExport.ResourceTagProperty> getTags()Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExport
The details that are available for an export.Returns union: either
IResolvableorCfnExport.ExportProperty- See Also:
-
getTags
- See Also:
-
builder
- Returns:
- a
CfnExportProps.BuilderofCfnExportProps
-