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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forReplicaRegionstatic final classAn implementation forReplicaRegion -
Method Summary
Modifier and TypeMethodDescriptionstatic ReplicaRegion.Builderbuilder()default IKeyThe 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.BuilderofReplicaRegion
-