Table: aws_route53_hosted_zones

This table shows data for Amazon Route 53 Hosted Zones.

https://docs.aws.amazon.com/Route53/latest/APIReference/API_HostedZone.html (opens in a new tab)

The primary key for this table is arn.

Relations

The following tables depend on aws_route53_hosted_zones:

Columns

NameType
_cq_iduuid
_cq_parent_iduuid
account_idutf8
arn (PK)utf8
caller_referenceutf8
idutf8
nameutf8
configjson
linked_servicejson
resource_record_set_countint64
tagsjson
delegation_set_idutf8
delegation_setjson
vpcsjson

Example Queries

These SQL queries are sampled from CloudQuery policies and are compatible with PostgreSQL.

Unused Route 53 hosted zones

SELECT
  'Unused Route 53 hosted zones' AS title,
  account_id,
  arn AS resource_id,
  'fail' AS status
FROM
  aws_route53_hosted_zones
WHERE
  resource_record_set_count = 0;