Interface CfnExportProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExportProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:01.349Z")
@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.dynamodb.*;
CfnExportProps cfnExportProps = CfnExportProps.builder()
.s3Bucket("s3Bucket")
.tableArn("tableArn")
// the properties below are optional
.exportFormat("exportFormat")
.exportType("exportType")
.s3BucketOwner("s3BucketOwner")
.s3Prefix("s3Prefix")
.s3SseAlgorithm("s3SseAlgorithm")
.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()default StringThe format of the exported data.default StringThe type of export that was performed.The 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.The Amazon Resource Name (ARN) of the table that was exported.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Bucket
The name of the Amazon S3 bucket containing the export.- See Also:
-
getTableArn
The Amazon Resource Name (ARN) of the table that was exported.- See Also:
-
getExportFormat
The format of the exported data.- See Also:
-
getExportType
The type of export that was performed.- 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:
-
builder
- Returns:
- a
CfnExportProps.BuilderofCfnExportProps
-