KeySigningKeyReference

class aws_cdk.aws_route53.KeySigningKeyReference(*, hosted_zone_id, key_signing_key_name)

Bases: object

A reference to a KeySigningKey resource.

Parameters:
  • hosted_zone_id (str) – The HostedZoneId of the KeySigningKey resource.

  • key_signing_key_name (str) – The Name of the KeySigningKey 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_route53 as route53

key_signing_key_reference = route53.KeySigningKeyReference(
    hosted_zone_id="hostedZoneId",
    key_signing_key_name="keySigningKeyName"
)

Attributes

hosted_zone_id

The HostedZoneId of the KeySigningKey resource.

key_signing_key_name

The Name of the KeySigningKey resource.