Interface ReplicaRegion
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ReplicaRegion.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:41.294Z")
@Stability(Stable)
public interface ReplicaRegion
extends software.amazon.jsii.JsiiSerializable
Secret replica region.
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.kms.*; import software.amazon.awscdk.services.secretsmanager.*; Key key; ReplicaRegion replicaRegion = ReplicaRegion.builder() .region("region") // the properties below are optional .encryptionKey(key) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forReplicaRegion
static final class
An implementation forReplicaRegion
-
Method Summary
Modifier and TypeMethodDescriptionstatic ReplicaRegion.Builder
builder()
default IKey
The customer-managed encryption key to use for encrypting the secret value.The name of the region.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRegion
The name of the region. -
getEncryptionKey
The customer-managed encryption key to use for encrypting the secret value.Default: - A default KMS key for the account and region is used.
-
builder
- Returns:
- a
ReplicaRegion.Builder
ofReplicaRegion
-