HostedZoneContextQuery

class aws_cdk.cloud_assembly_schema.HostedZoneContextQuery(*, account, domain_name, region, lookup_role_arn=None, private_zone=None, vpc_id=None)

Bases: object

Query to hosted zone context provider.

Parameters:
  • account (str) – Query account.

  • domain_name (str) – The domain name e.g. example.com to lookup.

  • region (str) – Query region.

  • lookup_role_arn (Optional[str]) – The ARN of the role that should be used to look up the missing values. Default: - None

  • private_zone (Optional[bool]) – True if the zone you want to find is a private hosted zone. Default: false

  • vpc_id (Optional[str]) – The VPC ID to that the private zone must be associated with. If you provide VPC ID and privateZone is false, this will return no results and raise an error. Default: - Required if privateZone=true

Attributes

account

Query account.

domain_name

The domain name e.g. example.com to lookup.

lookup_role_arn

The ARN of the role that should be used to look up the missing values.

Default:
  • None

private_zone

True if the zone you want to find is a private hosted zone.

Default:

false

region

Query region.

vpc_id

The VPC ID to that the private zone must be associated with.

If you provide VPC ID and privateZone is false, this will return no results and raise an error.

Default:
  • Required if privateZone=true