Interface CfnExportMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExportMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:18.617Z")
@Stability(Stable)
public interface CfnExportMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnExportPropsMixin.
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.dynamodb.*;
CfnExportMixinProps cfnExportMixinProps = CfnExportMixinProps.builder()
.exportFormat("exportFormat")
.exportType("exportType")
.s3Bucket("s3Bucket")
.s3BucketOwner("s3BucketOwner")
.s3Prefix("s3Prefix")
.s3SseAlgorithm("s3SseAlgorithm")
.tableArn("tableArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnExportMixinPropsstatic final classAn implementation forCfnExportMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnExportMixinProps.Builderbuilder()default StringThe format of the exported data.default StringThe type of export that was performed.default StringThe name of the Amazon S3 bucket containing the export.default StringThe ID of the Amazon Web Services account that owns the bucket containing the export.default StringThe Amazon S3 bucket prefix used as the file name and path of the exported snapshot.default StringType of encryption used on the bucket where export data is stored.default StringThe Amazon Resource Name (ARN) of the table that was exported.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExportFormat
The format of the exported data.- See Also:
-
getExportType
The type of export that was performed.- See Also:
-
getS3Bucket
The name of the Amazon S3 bucket containing the export.- See Also:
-
getS3BucketOwner
The ID of the Amazon Web Services account that owns the bucket containing the export.- See Also:
-
getS3Prefix
The Amazon S3 bucket prefix used as the file name and path of the exported snapshot.- See Also:
-
getS3SseAlgorithm
Type of encryption used on the bucket where export data is stored.- See Also:
-
getTableArn
The Amazon Resource Name (ARN) of the table that was exported.- See Also:
-
builder
- Returns:
- a
CfnExportMixinProps.BuilderofCfnExportMixinProps
-