Interface CfnExportProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExportProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-27T17:01:57.922Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnExportProps
static final class
An implementation forCfnExportProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnExportProps.Builder
builder()
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.- See Also:
-
getTags
- See Also:
-
builder
- Returns:
- a
CfnExportProps.Builder
ofCfnExportProps
-