Table of Contents

Interface IReplicaRegion

Namespace
Amazon.CDK.AWS.SecretsManager
Assembly
Amazon.CDK.AWS.SecretsManager.dll

Secret replica region.

public interface IReplicaRegion

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
            };

Remarks

ExampleMetadata: fixture=_generated

Properties

EncryptionKey

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

IKey? EncryptionKey { get; }

Property Value

IKey

Remarks

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

Region

The name of the region.

string Region { get; }

Property Value

string