Change Cidr Collection
route53_change_cidr_collection | R Documentation |
Creates, changes, or deletes CIDR blocks within a collection¶
Description¶
Creates, changes, or deletes CIDR blocks within a collection. Contains authoritative IP information mapping blocks to one or multiple locations.
A change request can update multiple locations in a collection at a time, which is helpful if you want to move one or more CIDR blocks from one location to another in one transaction, without downtime.
Limits
The max number of CIDR blocks included in the request is 1000. As a result, big updates require multiple API calls.
PUT and DELETE_IF_EXISTS
Use change_cidr_collection
to perform the following actions:
-
PUT
: Create a CIDR block within the specified collection. -
DELETE_IF_EXISTS
: Delete an existing CIDR block from the collection.
Usage¶
route53_change_cidr_collection(Id, CollectionVersion, Changes)
Arguments¶
Id |
[required] The UUID of the CIDR collection to update. |
CollectionVersion |
A sequential counter that Amazon Route 53 sets to 1 when you create a collection and increments it by 1 each time you update the collection. We recommend that you use
|
Changes |
[required] Information about changes to a CIDR collection. |
Value¶
A list with the following syntax:
list(
Id = "string"
)
Request syntax¶
svc$change_cidr_collection(
Id = "string",
CollectionVersion = 123,
Changes = list(
list(
LocationName = "string",
Action = "PUT"|"DELETE_IF_EXISTS",
CidrList = list(
"string"
)
)
)
)