Table of Contents

Interface CfnSecret.IReplicaRegionProperty

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

Specifies a Region and the KmsKeyId for a replica secret.

public interface CfnSecret.IReplicaRegionProperty

Examples

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

             var replicaRegionProperty = new ReplicaRegionProperty {
                 Region = "region",

                 // the properties below are optional
                 KmsKeyId = "kmsKeyId"
             };

Remarks

Properties

KmsKeyId

The ARN, key ID, or alias of the KMS key to encrypt the secret.

string? KmsKeyId { get; }

Property Value

string

Remarks

Region

(Optional) A string that represents a Region , for example "us-east-1".

string Region { get; }

Property Value

string

Remarks