Show / Hide Table of Contents

Class CfnSecretPropsMixin.ReplicaRegionProperty

Specifies a Region and the KmsKeyId for a replica secret.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-replicaregion.html

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.CfnPropertyMixins.AWS.SecretsManager;

             var replicaRegionProperty = new ReplicaRegionProperty {
                 KmsKeyId = "kmsKeyId",
                 Region = "region"
             };

Synopsis

Constructors

ReplicaRegionProperty()

Specifies a Region and the KmsKeyId for a replica secret.

Properties

KmsKeyId

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

Region

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

Constructors

ReplicaRegionProperty()

Specifies a Region and the KmsKeyId for a replica secret.

public ReplicaRegionProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-replicaregion.html

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.CfnPropertyMixins.AWS.SecretsManager;

             var replicaRegionProperty = new ReplicaRegionProperty {
                 KmsKeyId = "kmsKeyId",
                 Region = "region"
             };

Properties

KmsKeyId

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

public string? KmsKeyId { get; set; }
Property Value

string

Remarks

If you don't include this field, Secrets Manager uses aws/secretsmanager .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-replicaregion.html#cfn-secretsmanager-secret-replicaregion-kmskeyid

Region

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

public string? Region { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-replicaregion.html#cfn-secretsmanager-secret-replicaregion-region

Implements

CfnSecretPropsMixin.IReplicaRegionProperty
Back to top Generated by DocFX