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();