Class CfnSecretPropsMixin.ReplicaRegionProperty
Specifies a Region and the KmsKeyId for a replica secret.
Implements
Inherited Members
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
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 |
Properties
| KmsKeyId | The ARN, key ID, or alias of the KMS key to encrypt the secret. |
| Region | A string that represents a |
Constructors
ReplicaRegionProperty()
Specifies a Region and the KmsKeyId for a replica secret.
public ReplicaRegionProperty()
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.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
Remarks
If you don't include this field, Secrets Manager uses aws/secretsmanager .
Region
A string that represents a Region , for example "us-east-1".
public string? Region { get; set; }