interface ReplicaKeyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.KMS.ReplicaKeyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awskms#ReplicaKeyReference |
Java | software.amazon.awscdk.interfaces.kms.ReplicaKeyReference |
Python | aws_cdk.interfaces.aws_kms.ReplicaKeyReference |
TypeScript | aws-cdk-lib » interfaces » aws_kms » ReplicaKeyReference |
A reference to a ReplicaKey resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kms as interfaces_kms } from 'aws-cdk-lib/interfaces';
const replicaKeyReference: interfaces_kms.ReplicaKeyReference = {
keyId: 'keyId',
replicaKeyArn: 'replicaKeyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | The KeyId of the ReplicaKey resource. |
| replica | string | The ARN of the ReplicaKey resource. |
keyId
Type:
string
The KeyId of the ReplicaKey resource.
replicaKeyArn
Type:
string
The ARN of the ReplicaKey resource.

.NET
Go
Java
Python
TypeScript