Describe Ipam Scopes
ec2_describe_ipam_scopes | R Documentation |
Get information about your IPAM scopes¶
Description¶
Get information about your IPAM scopes.
Usage¶
Arguments¶
DryRun
A 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
.Filters
One or more filters for the request. For more information about filtering, see Filtering CLI output.
MaxResults
The maximum number of results to return in the request.
NextToken
The token for the next page of results.
IpamScopeIds
The IDs of the scopes you want information on.
Value¶
A list with the following syntax:
list(
NextToken = "string",
IpamScopes = list(
list(
OwnerId = "string",
IpamScopeId = "string",
IpamScopeArn = "string",
IpamArn = "string",
IpamRegion = "string",
IpamScopeType = "public"|"private",
IsDefault = TRUE|FALSE,
Description = "string",
PoolCount = 123,
State = "create-in-progress"|"create-complete"|"create-failed"|"modify-in-progress"|"modify-complete"|"modify-failed"|"delete-in-progress"|"delete-complete"|"delete-failed"|"isolate-in-progress"|"isolate-complete"|"restore-in-progress",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
)
)