Forrest logo
back to the aws tool

aws-route53:tldr:6ff33

aws-route53: Show all records in a zone.
$ aws route53 list-resource-record-sets --hosted-zone-id ${zone_id}
try on your machine

The aws route53 list-resource-record-sets command is used to retrieve information about the resource record sets (RR sets) in a specified hosted zone in Amazon Route 53.

In the given command, the --hosted-zone-id flag is used to specify the ID of the hosted zone for which you want to list the resource record sets. The ${zone_id} is a placeholder for the actual hosted zone ID value.

To use this command, you need to have the AWS Command Line Interface (AWS CLI) installed and properly configured with your AWS credentials.

When executed, the command will make an API request to AWS Route 53 and fetch all the information about the resource record sets in the specified hosted zone. This information usually includes the record name, type, value, and other attributes.

It is important to replace ${zone_id} with the actual hosted zone ID you want to list the resource record sets for. For example, you might replace ${zone_id} with Z1234567890ABC to list the resource record sets for the hosted zone with that ID.

Note that proper authorization and access permissions are required to execute this command successfully.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the aws tool