Skip to content

docs: Add DELETE example for Route53 ChangeResourceRecordSets #3478

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions botocore/data/route53/2013-04-01/examples-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -684,6 +684,50 @@
"description": "The following example creates four geolocation alias resource record sets that route traffic to ELB load balancers. Traffic is routed to one of four IP addresses, for North America (NA), for South America (SA), for Europe (EU), and for all other locations (*).",
"id": "to-create-geolocation-alias-resource-record-sets-1484612871203",
"title": "To create geolocation alias resource record sets"
},
{
"input": {
"HostedZoneId": "Z3M3LMPEXAMPLE",
"ChangeBatch": {
"Changes": [
{
"Action": "DELETE",
"ResourceRecordSet": {
"Name": "test.example.com",
"Type": "A",
"TTL": 300,
"ResourceRecords": [
{
"Value": "192.0.2.1"
}
]
}
}
]
}
},
"output": {
"ChangeInfo": {
"Id": "/change/C2682N5HXP0BZ4",
"Status": "PENDING",
"SubmittedAt": "2025-05-20T18:16:46.598Z"
}
},
"comments": {
"input": {
"Action": "DELETE operation requires all original record values",
"Name": "The name of the record to delete",
"Type": "Record type (A, AAAA, etc)",
"TTL": "Must match the original TTL value",
"ResourceRecords": "Must match the original record values"
},
"output": {
"SubmittedAt": "The date and time are in Coordinated Universal Time (UTC) and ISO 8601 format."
}
},
"description": "To delete a resource record set, you must specify all the same values that you specified when you created it. This includes the Name, Type, TTL, and ResourceRecords values.",
"id": "to-delete-resource-record-set",
"title": "To delete a resource record set"
}
],
"ChangeTagsForResource": [
Expand Down