
aws-route53
List of commands for aws-route53:
-
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 machineexplain this command
-
aws-route53:tldr:720c5 aws-route53: List all hosted zones, private and public.$ aws route53 list-hosted-zonestry on your machineexplain this command
-
aws-route53:tldr:896e4 aws-route53: Test DNS resolving by Amazon servers of a given zone.$ aws route53 test-dns-answer --hosted-zone-id ${zone_id} --record-name ${name} --record-type ${type}try on your machineexplain this command
-
aws-route53:tldr:e4606 aws-route53: Delete a zone (if the zone has non-defaults SOA and NS records the command will fail).$ aws route53 delete-hosted-zone --id ${zone_id}try on your machineexplain this command
-
aws-route53:tldr:ec6c1 aws-route53: Create a new, public zone using a request identifier to retry the operation safely.$ aws route53 create-hosted-zone --name ${name} --caller-reference ${request_identifier}try on your machineexplain this command