Delete Coip Pool
ec2_delete_coip_pool | R Documentation |
Deletes a pool of customer-owned IP (CoIP) addresses¶
Description¶
Deletes a pool of customer-owned IP (CoIP) addresses.
Usage¶
ec2_delete_coip_pool(CoipPoolId, DryRun)
Arguments¶
CoipPoolId |
[required] The ID of the CoIP pool that you want to delete. |
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
|
Value¶
A list with the following syntax:
list(
CoipPool = list(
PoolId = "string",
PoolCidrs = list(
"string"
),
LocalGatewayRouteTableId = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
PoolArn = "string"
)
)
Request syntax¶
svc$delete_coip_pool(
CoipPoolId = "string",
DryRun = TRUE|FALSE
)