interface ReplicaRegionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SecretsManager.Mixins.CfnSecretPropsMixin.ReplicaRegionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssecretsmanager/mixins#CfnSecretPropsMixin_ReplicaRegionProperty |
Java | software.amazon.awscdk.mixins.preview.services.secretsmanager.mixins.CfnSecretPropsMixin.ReplicaRegionProperty |
Python | aws_cdk.mixins_preview.aws_secretsmanager.mixins.CfnSecretPropsMixin.ReplicaRegionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_secretsmanager » mixins » CfnSecretPropsMixin » ReplicaRegionProperty |
Specifies a Region and the KmsKeyId for a replica secret.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as secretsmanager_mixins } from '@aws-cdk/mixins-preview/aws-secretsmanager';
const replicaRegionProperty: secretsmanager_mixins.CfnSecretPropsMixin.ReplicaRegionProperty = {
kmsKeyId: 'kmsKeyId',
region: 'region',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | The ARN, key ID, or alias of the KMS key to encrypt the secret. |
| region? | string | A string that represents a Region , for example "us-east-1". |
kmsKeyId?
Type:
string
(optional)
The ARN, key ID, or alias of the KMS key to encrypt the secret.
If you don't include this field, Secrets Manager uses aws/secretsmanager .
region?
Type:
string
(optional)
A string that represents a Region , for example "us-east-1".

.NET
Go
Java
Python
TypeScript