ReplicaKeyReference

class aws_cdk.aws_kms.ReplicaKeyReference(*, key_id, replica_key_arn)

Bases: object

A reference to a ReplicaKey resource.

Parameters:
  • key_id (str) – The KeyId of the ReplicaKey resource.

  • replica_key_arn (str) – The ARN of the ReplicaKey resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_kms as kms

replica_key_reference = kms.ReplicaKeyReference(
    key_id="keyId",
    replica_key_arn="replicaKeyArn"
)

Attributes

key_id

The KeyId of the ReplicaKey resource.

replica_key_arn

The ARN of the ReplicaKey resource.