Get Subnet Cidr Reservations
ec2_get_subnet_cidr_reservations | R Documentation |
Gets information about the subnet CIDR reservations¶
Description¶
Gets information about the subnet CIDR reservations.
Usage¶
ec2_get_subnet_cidr_reservations(Filters, SubnetId, DryRun, NextToken,
MaxResults)
Arguments¶
Filters |
One or more filters.
|
SubnetId |
[required] The ID of the subnet. |
DryRun |
Checks whether you have the required permissions for the action,
without actually making the request, and provides an error response. If
you have the required permissions, the error response is
|
NextToken |
The token for the next page of results. |
MaxResults |
The maximum number of results to return with a single call. To
retrieve the remaining results, make another call with the returned
|
Value¶
A list with the following syntax:
list(
SubnetIpv4CidrReservations = list(
list(
SubnetCidrReservationId = "string",
SubnetId = "string",
Cidr = "string",
ReservationType = "prefix"|"explicit",
OwnerId = "string",
Description = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
),
SubnetIpv6CidrReservations = list(
list(
SubnetCidrReservationId = "string",
SubnetId = "string",
Cidr = "string",
ReservationType = "prefix"|"explicit",
OwnerId = "string",
Description = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
),
NextToken = "string"
)
Request syntax¶
svc$get_subnet_cidr_reservations(
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
SubnetId = "string",
DryRun = TRUE|FALSE,
NextToken = "string",
MaxResults = 123
)