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();
 
  • Method Details

    • getRegion

      @Stability(Stable) @NotNull String getRegion()
      The name of the region.
    • getEncryptionKey

      @Stability(Stable) @Nullable default IKey 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

      @Stability(Stable) static ReplicaRegion.Builder builder()
      Returns:
      a ReplicaRegion.Builder of ReplicaRegion