Interface CfnServerlessCacheSnapshotMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServerlessCacheSnapshotMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:27.268Z")
@Stability(Stable)
public interface CfnServerlessCacheSnapshotMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnServerlessCacheSnapshotPropsMixin.
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.elasticache.*;
CfnServerlessCacheSnapshotMixinProps cfnServerlessCacheSnapshotMixinProps = CfnServerlessCacheSnapshotMixinProps.builder()
.kmsKeyId("kmsKeyId")
.serverlessCacheName("serverlessCacheName")
.serverlessCacheSnapshotName("serverlessCacheSnapshotName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnServerlessCacheSnapshotMixinPropsstatic final classAn implementation forCfnServerlessCacheSnapshotMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe Amazon Resource Name (ARN) of the AWS KMS key used to encrypt the snapshot.default StringThe name of an existing serverless cache.default StringThe name of the serverless cache snapshot.getTags()A list of tags to be added to the serverless cache snapshot resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKmsKeyId
The Amazon Resource Name (ARN) of the AWS KMS key used to encrypt the snapshot.Provide the key ARN: the resource returns the key ARN on read, so supplying a bare key ID or alias for this createOnly property may be reported as drift by CloudFormation.
- See Also:
-
getServerlessCacheName
The name of an existing serverless cache.The snapshot is created from this cache.
- See Also:
-
getServerlessCacheSnapshotName
The name of the serverless cache snapshot.Must be unique for the customer account. This value is stored as a lowercase string.
- See Also:
-
getTags
A list of tags to be added to the serverless cache snapshot resource.- See Also:
-
builder
-