Show / Hide Table of Contents

Class ReplicaRegion

Secret replica region.

Inheritance
object
ReplicaRegion
Implements
IReplicaRegion
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.SecretsManager
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ReplicaRegion : IReplicaRegion
Syntax (vb)
Public Class ReplicaRegion Implements IReplicaRegion
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.KMS;
            using Amazon.CDK.AWS.SecretsManager;

            Key key;

            var replicaRegion = new ReplicaRegion {
                Region = "region",

                // the properties below are optional
                EncryptionKey = key
            };

Synopsis

Constructors

ReplicaRegion()

Secret replica region.

Properties

EncryptionKey

The customer-managed encryption key to use for encrypting the secret value.

Region

The name of the region.

Constructors

ReplicaRegion()

Secret replica region.

public ReplicaRegion()
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.KMS;
            using Amazon.CDK.AWS.SecretsManager;

            Key key;

            var replicaRegion = new ReplicaRegion {
                Region = "region",

                // the properties below are optional
                EncryptionKey = key
            };

Properties

EncryptionKey

The customer-managed encryption key to use for encrypting the secret value.

public IKey? EncryptionKey { get; set; }
Property Value

IKey

Remarks

Default: - A default KMS key for the account and region is used.

Region

The name of the region.

public string Region { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IReplicaRegion
Back to top Generated by DocFX