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: