Get Ipam Pool Cidrs
| ec2_get_ipam_pool_cidrs | R Documentation |
Get the CIDRs provisioned to an IPAM pool¶
Description¶
Get the CIDRs provisioned to an IPAM pool.
Usage¶
Arguments¶
DryRunA check for 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
DryRunOperation. Otherwise, it isUnauthorizedOperation.IpamPoolId[required] The ID of the IPAM pool you want the CIDR for.
FiltersOne or more filters for the request. For more information about filtering, see Filtering CLI output.
MaxResultsThe maximum number of results to return in the request.
NextTokenThe token for the next page of results.
Value¶
A list with the following syntax:
list(
IpamPoolCidrs = list(
list(
Cidr = "string",
State = "pending-provision"|"provisioned"|"failed-provision"|"pending-deprovision"|"deprovisioned"|"failed-deprovision"|"pending-import"|"failed-import",
FailureReason = list(
Code = "cidr-not-available"|"limit-exceeded",
Message = "string"
),
IpamPoolCidrId = "string",
NetmaskLength = 123
)
),
NextToken = "string"
)