Complete the code to create a public hosted zone in AWS Route 53.
aws route53 create-hosted-zone --name example.com --caller-reference [1]The caller-reference must be a unique string to identify the request.
Complete the code to list all hosted zones in AWS Route 53.
aws route53 [1]The command list-hosted-zones lists all hosted zones in your AWS account.
Fix the error in the command to delete a hosted zone by filling the missing option.
aws route53 delete-hosted-zone --id [1]The --id option requires the hosted zone ID, not the domain name or other strings.
Fill both blanks to create a private hosted zone for the VPC with ID vpc-123abc.
aws route53 create-hosted-zone --name example.local --caller-reference [1] --vpc VPCRegion=[2],VPCId=vpc-123abc --hosted-zone-config PrivateZone=true
The caller-reference must be unique, and the VPC region must match the VPC's actual region.
Fill all three blanks to create a record set in a hosted zone with ID Z3M3LMPEXAMPLE for domain www.example.com with type A and value 192.0.2.44.
aws route53 change-resource-record-sets --hosted-zone-id [1] --change-batch '{"Changes": [{"Action": "CREATE", "ResourceRecordSet": {"Name": "[2]", "Type": "[3]", "TTL": 300, "ResourceRecords": [{"Value": "192.0.2.44"}]}}]}'
You must specify the hosted zone ID, the record name, and the record type correctly to create the record.