Interface CfnSecretPropsMixin.ReplicaRegionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecretPropsMixin.ReplicaRegionProperty.Jsii$Proxy
- Enclosing class:
CfnSecretPropsMixin
@Stability(Stable)
public static interface CfnSecretPropsMixin.ReplicaRegionProperty
extends software.amazon.jsii.JsiiSerializable
Specifies a
Region and the KmsKeyId for a replica secret.
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.secretsmanager.*;
ReplicaRegionProperty replicaRegionProperty = ReplicaRegionProperty.builder()
.kmsKeyId("kmsKeyId")
.region("region")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSecretPropsMixin.ReplicaRegionPropertystatic final classAn implementation forCfnSecretPropsMixin.ReplicaRegionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKmsKeyId
The ARN, key ID, or alias of the KMS key to encrypt the secret.If you don't include this field, Secrets Manager uses
aws/secretsmanager.- See Also:
-
getRegion
A string that represents aRegion, for example "us-east-1".- See Also:
-
builder
-