Interface CfnSecret.ReplicaRegionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecret.ReplicaRegionProperty.Jsii$Proxy
- Enclosing class:
- CfnSecret
@Stability(Stable)
public static interface CfnSecret.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.services.secretsmanager.*;
ReplicaRegionProperty replicaRegionProperty = ReplicaRegionProperty.builder()
.region("region")
// the properties below are optional
.kmsKeyId("kmsKeyId")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSecret.ReplicaRegionPropertystatic final classAn implementation forCfnSecret.ReplicaRegionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRegion
(Optional) A string that represents aRegion, for example "us-east-1". -
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. -
builder
-