Route 53 examples using AWS CLI
The following code examples show you how to perform actions and implement common scenarios by using the AWS Command Line Interface with Route 53.
Actions are code excerpts from larger programs and must be run in context. While actions show you how to call individual service functions, you can see actions in context in their related scenarios.
Each example includes a link to the complete source code, where you can find instructions on how to set up and run the code in context.
Topics
Actions
The following code example shows how to use change-resource-record-sets.
- AWS CLI
-
To create, update, or delete a resource record set
The following
change-resource-record-setscommand creates a resource record set using thehosted-zone-idZ1R8UBAEXAMPLEand the JSON-formatted configuration in the fileC:\awscli\route53\change-resource-record-sets.json:aws route53 change-resource-record-sets --hosted-zone-idZ1R8UBAEXAMPLE--change-batch file://C:\awscli\route53\change-resource-record-sets.jsonFor more information, see POST ChangeResourceRecordSets in the Amazon Route 53 API Reference.
The configuration in the JSON file depends on the kind of resource record set you want to create:
BasicWeightedAliasWeighted AliasLatencyLatency AliasFailoverFailover Alias
Basic Syntax:
{ "Comment": "optional comment about the changes in this change batch request", "Changes": [ { "Action": "CREATE"|"DELETE"|"UPSERT", "ResourceRecordSet": { "Name": "DNS domain name", "Type": "SOA"|"A"|"TXT"|"NS"|"CNAME"|"MX"|"PTR"|"SRV"|"SPF"|"AAAA", "TTL": time to live in seconds, "ResourceRecords": [ { "Value": "applicable value for the record type" }, {...} ] } }, {...} ] }Weighted Syntax:
{ "Comment": "optional comment about the changes in this change batch request", "Changes": [ { "Action": "CREATE"|"DELETE"|"UPSERT", "ResourceRecordSet": { "Name": "DNS domain name", "Type": "SOA"|"A"|"TXT"|"NS"|"CNAME"|"MX"|"PTR"|"SRV"|"SPF"|"AAAA", "SetIdentifier": "unique description for this resource record set", "Weight": value between 0 and 255, "TTL": time to live in seconds, "ResourceRecords": [ { "Value": "applicable value for the record type" }, {...} ], "HealthCheckId": "optional ID of an Amazon Route 53 health check" } }, {...} ] }Alias Syntax:
{ "Comment": "optional comment about the changes in this change batch request", "Changes": [ { "Action": "CREATE"|"DELETE"|"UPSERT", "ResourceRecordSet": { "Name": "DNS domain name", "Type": "SOA"|"A"|"TXT"|"NS"|"CNAME"|"MX"|"PTR"|"SRV"|"SPF"|"AAAA", "AliasTarget": { "HostedZoneId": "hosted zone ID for your CloudFront distribution, Amazon S3 bucket, Elastic Load Balancing load balancer, or Amazon Route 53 hosted zone", "DNSName": "DNS domain name for your CloudFront distribution, Amazon S3 bucket, Elastic Load Balancing load balancer, or another resource record set in this hosted zone", "EvaluateTargetHealth": true|false }, "HealthCheckId": "optional ID of an Amazon Route 53 health check" } }, {...} ] }Weighted Alias Syntax:
{ "Comment": "optional comment about the changes in this change batch request", "Changes": [ { "Action": "CREATE"|"DELETE"|"UPSERT", "ResourceRecordSet": { "Name": "DNS domain name", "Type": "SOA"|"A"|"TXT"|"NS"|"CNAME"|"MX"|"PTR"|"SRV"|"SPF"|"AAAA", "SetIdentifier": "unique description for this resource record set", "Weight": value between 0 and 255, "AliasTarget": { "HostedZoneId": "hosted zone ID for your CloudFront distribution, Amazon S3 bucket, Elastic Load Balancing load balancer, or Amazon Route 53 hosted zone", "DNSName": "DNS domain name for your CloudFront distribution, Amazon S3 bucket, Elastic Load Balancing load balancer, or another resource record set in this hosted zone", "EvaluateTargetHealth": true|false }, "HealthCheckId": "optional ID of an Amazon Route 53 health check" } }, {...} ] }Latency Syntax:
{ "Comment": "optional comment about the changes in this change batch request", "Changes": [ { "Action": "CREATE"|"DELETE"|"UPSERT", "ResourceRecordSet": { "Name": "DNS domain name", "Type": "SOA"|"A"|"TXT"|"NS"|"CNAME"|"MX"|"PTR"|"SRV"|"SPF"|"AAAA", "SetIdentifier": "unique description for this resource record set", "Region": "Amazon EC2 region name", "TTL": time to live in seconds, "ResourceRecords": [ { "Value": "applicable value for the record type" }, {...} ], "HealthCheckId": "optional ID of an Amazon Route 53 health check" } }, {...} ] }Latency Alias Syntax:
{ "Comment": "optional comment about the changes in this change batch request", "Changes": [ { "Action": "CREATE"|"DELETE"|"UPSERT", "ResourceRecordSet": { "Name": "DNS domain name", "Type": "SOA"|"A"|"TXT"|"NS"|"CNAME"|"MX"|"PTR"|"SRV"|"SPF"|"AAAA", "SetIdentifier": "unique description for this resource record set", "Region": "Amazon EC2 region name", "AliasTarget": { "HostedZoneId": "hosted zone ID for your CloudFront distribution, Amazon S3 bucket, Elastic Load Balancing load balancer, or Amazon Route 53 hosted zone", "DNSName": "DNS domain name for your CloudFront distribution, Amazon S3 bucket, Elastic Load Balancing load balancer, or another resource record set in this hosted zone", "EvaluateTargetHealth": true|false }, "HealthCheckId": "optional ID of an Amazon Route 53 health check" } }, {...} ] }Failover Syntax:
{ "Comment": "optional comment about the changes in this change batch request", "Changes": [ { "Action": "CREATE"|"DELETE"|"UPSERT", "ResourceRecordSet": { "Name": "DNS domain name", "Type": "SOA"|"A"|"TXT"|"NS"|"CNAME"|"MX"|"PTR"|"SRV"|"SPF"|"AAAA", "SetIdentifier": "unique description for this resource record set", "Failover": "PRIMARY" | "SECONDARY", "TTL": time to live in seconds, "ResourceRecords": [ { "Value": "applicable value for the record type" }, {...} ], "HealthCheckId": "ID of an Amazon Route 53 health check" } }, {...} ] }Failover Alias Syntax:
{ "Comment": "optional comment about the changes in this change batch request", "Changes": [ { "Action": "CREATE"|"DELETE"|"UPSERT", "ResourceRecordSet": { "Name": "DNS domain name", "Type": "SOA"|"A"|"TXT"|"NS"|"CNAME"|"MX"|"PTR"|"SRV"|"SPF"|"AAAA", "SetIdentifier": "unique description for this resource record set", "Failover": "PRIMARY" | "SECONDARY", "AliasTarget": { "HostedZoneId": "hosted zone ID for your CloudFront distribution, Amazon S3 bucket, Elastic Load Balancing load balancer, or Amazon Route 53 hosted zone", "DNSName": "DNS domain name for your CloudFront distribution, Amazon S3 bucket, Elastic Load Balancing load balancer, or another resource record set in this hosted zone", "EvaluateTargetHealth": true|false }, "HealthCheckId": "optional ID of an Amazon Route 53 health check" } }, {...} ] }-
For API details, see ChangeResourceRecordSets
in AWS CLI Command Reference.
-
The following code example shows how to use change-tags-for-resource.
- AWS CLI
-
The following command adds a tag named
ownerto a healthcheck resource specified by ID:aws route53 change-tags-for-resource --resource-typehealthcheck--resource-id6233434j-18c1-34433-ba8e-3443434--add-tagsKey=owner,Value=mybossThe following command removes a tag named
ownerfrom a hosted zone resource specified by ID:aws route53 change-tags-for-resource --resource-typehostedzone--resource-idZ1523434445--remove-tag-keysowner-
For API details, see ChangeTagsForResource
in AWS CLI Command Reference.
-
The following code example shows how to use create-health-check.
- AWS CLI
-
To create a health check
The following
create-health-checkcommand creates a health check using the caller reference2014-04-01-18:47and the JSON-formatted configuration in the fileC:\awscli\route53\create-health-check.json:aws route53 create-health-check --caller-reference2014-04-01-18:47--health-check-config file://C:\awscli\route53\create-health-check.jsonJSON syntax:
{ "IPAddress": "IP address of the endpoint to check", "Port": port on the endpoint to check--required when Type is "TCP", "Type": "HTTP"|"HTTPS"|"HTTP_STR_MATCH"|"HTTPS_STR_MATCH"|"TCP", "ResourcePath": "path of the file that you want Amazon Route 53 to request--all Types except TCP", "FullyQualifiedDomainName": "domain name of the endpoint to check--all Types except TCP", "SearchString": "if Type is HTTP_STR_MATCH or HTTPS_STR_MATCH, the string to search for in the response body from the specified resource", "RequestInterval": 10 | 30, "FailureThreshold": integer between 1 and 10 }To add the health check to a Route 53 resource record set, use the
change-resource-record-setscommand.For more information, see Amazon Route 53 Health Checks and DNS Failover in the Amazon Route 53 Developer Guide.
-
For API details, see CreateHealthCheck
in AWS CLI Command Reference.
-
The following code example shows how to use create-hosted-zone.
- AWS CLI
-
To create a hosted zone
The following
create-hosted-zonecommand adds a hosted zone namedexample.comusing the caller reference2014-04-01-18:47. The optional comment includes a space, so it must be enclosed in quotation marks:aws route53 create-hosted-zone --nameexample.com--caller-reference2014-04-01-18:47--hosted-zone-config Comment="command-line version"For more information, see Working with Hosted Zones in the Amazon Route 53 Developer Guide.
-
For API details, see CreateHostedZone
in AWS CLI Command Reference.
-
The following code example shows how to use delete-health-check.
- AWS CLI
-
To delete a health check
The following
delete-health-checkcommand deletes the health check with ahealth-check-idofe75b48d9-547a-4c3d-88a5-ae4002397608:aws route53 delete-health-check --health-check-ide75b48d9-547a-4c3d-88a5-ae4002397608-
For API details, see DeleteHealthCheck
in AWS CLI Command Reference.
-
The following code example shows how to use delete-hosted-zone.
- AWS CLI
-
To delete a hosted zone
The following
delete-hosted-zonecommand deletes the hosted zone with anidofZ36KTIQEXAMPLE:aws route53 delete-hosted-zone --idZ36KTIQEXAMPLE-
For API details, see DeleteHostedZone
in AWS CLI Command Reference.
-
The following code example shows how to use get-change.
- AWS CLI
-
To get the status of a change to resource record sets
The following
get-changecommand gets the status and other information about thechange-resource-record-setsrequest that has anIdof/change/CWPIK4URU2I5S:aws route53 get-change --id/change/CWPIK4URU2I5S-
For API details, see GetChange
in AWS CLI Command Reference.
-
The following code example shows how to use get-health-check.
- AWS CLI
-
To get information about a health check
The following
get-health-checkcommand gets information about the health check that has ahealth-check-idof02ec8401-9879-4259-91fa-04e66d094674:aws route53 get-health-check --health-check-id02ec8401-9879-4259-91fa-04e66d094674-
For API details, see GetHealthCheck
in AWS CLI Command Reference.
-
The following code example shows how to use get-hosted-zone.
- AWS CLI
-
To get information about a hosted zone
The following
get-hosted-zonecommand gets information about the hosted zone with anidofZ1R8UBAEXAMPLE:aws route53 get-hosted-zone --idZ1R8UBAEXAMPLE-
For API details, see GetHostedZone
in AWS CLI Command Reference.
-
The following code example shows how to use list-health-checks.
- AWS CLI
-
To list the health checks associated with the current AWS account
The following
list-health-checkscommand lists detailed information about the first 100 health checks that are associated with the current AWS account.:aws route53 list-health-checksIf you have more than 100 health checks, or if you want to list them in groups smaller than 100, include the
--maxitemsparameter. For example, to list health checks one at a time, use the following command:aws route53 list-health-checks --max-items1To view the next health check, take the value of
NextTokenfrom the response to the previous command, and include it in the--starting-tokenparameter, for example:aws route53 list-health-checks --max-items1--starting-tokenZ3M3LMPEXAMPLE-
For API details, see ListHealthChecks
in AWS CLI Command Reference.
-
The following code example shows how to use list-hosted-zones-by-name.
- AWS CLI
-
The following command lists up to 100 hosted zones ordered by domain name:
aws route53 list-hosted-zones-by-nameOutput:
{ "HostedZones": [ { "ResourceRecordSetCount": 2, "CallerReference": "test20150527-2", "Config": { "Comment": "test2", "PrivateZone": false }, "Id": "/hostedzone/Z119WBBTVP5WFX", "Name": "2.example.com." }, { "ResourceRecordSetCount": 2, "CallerReference": "test20150527-1", "Config": { "Comment": "test", "PrivateZone": false }, "Id": "/hostedzone/Z3P5QSUBK4POTI", "Name": "www.example.com." } ], "IsTruncated": false, "MaxItems": "100" }The following command lists hosted zones ordered by name, beginning with
www.example.com:aws route53 list-hosted-zones-by-name --dns-namewww.example.comOutput:
{ "HostedZones": [ { "ResourceRecordSetCount": 2, "CallerReference": "mwunderl20150527-1", "Config": { "Comment": "test", "PrivateZone": false }, "Id": "/hostedzone/Z3P5QSUBK4POTI", "Name": "www.example.com." } ], "DNSName": "www.example.com", "IsTruncated": false, "MaxItems": "100" }-
For API details, see ListHostedZonesByName
in AWS CLI Command Reference.
-
The following code example shows how to use list-hosted-zones.
- AWS CLI
-
To list the hosted zones associated with the current AWS account
The following
list-hosted-zonescommand lists summary information about the first 100 hosted zones that are associated with the current AWS account.:aws route53 list-hosted-zonesIf you have more than 100 hosted zones, or if you want to list them in groups smaller than 100, include the
--max-itemsparameter. For example, to list hosted zones one at a time, use the following command:aws route53 list-hosted-zones --max-items1To view information about the next hosted zone, take the value of
NextTokenfrom the response to the previous command, and include it in the--starting-tokenparameter, for example:aws route53 list-hosted-zones --max-items1--starting-tokenZ3M3LMPEXAMPLE-
For API details, see ListHostedZones
in AWS CLI Command Reference.
-
The following code example shows how to use list-query-logging-configs.
- AWS CLI
-
To list query logging configurations
The following
list-query-logging-configsexample lists information about the first 100 query logging configurations in your AWS account, for the hosted zoneZ1OX3WQEXAMPLE.aws route53 list-query-logging-configs \ --hosted-zone-idZ1OX3WQEXAMPLEOutput:
{ "QueryLoggingConfigs": [ { "Id": "964ff34e-ae03-4f06-80a2-9683cexample", "HostedZoneId": "Z1OX3WQEXAMPLE", "CloudWatchLogsLogGroupArn": "arn:aws:logs:us-east-1:111122223333:log-group:/aws/route53/example.com:*" } ] }For more information, see Logging DNS queries in the Amazon Route 53 Developer Guide.
-
For API details, see ListQueryLoggingConfigs
in AWS CLI Command Reference.
-
The following code example shows how to use list-resource-record-sets.
- AWS CLI
-
To list the resource record sets in a hosted zone
The following
list-resource-record-setscommand lists summary information about the first 100 resource record sets in a specified hosted zone.:aws route53 list-resource-record-sets --hosted-zone-idZ2LD58HEXAMPLEIf the hosted zone contains more than 100 resource record sets, or if you want to list them in groups smaller than 100, include the
--maxitemsparameter. For example, to list resource record sets one at a time, use the following command:aws route53 list-resource-record-sets --hosted-zone-idZ2LD58HEXAMPLE--max-items1To view information about the next resource record set in the hosted zone, take the value of
NextTokenfrom the response to the previous command, and include it in the--starting-tokenparameter, for example:aws route53 list-resource-record-sets --hosted-zone-idZ2LD58HEXAMPLE--max-items1--starting-tokenZ3M3LMPEXAMPLETo view all the resource record sets of a particular name, use the
--queryparameter to filter them out. For example:aws route53 list-resource-record-sets --hosted-zone-idZ2LD58HEXAMPLE--query"ResourceRecordSets[?Name == 'example.domain.']"-
For API details, see ListResourceRecordSets
in AWS CLI Command Reference.
-