2020/07/20 - Amazon Elastic Compute Cloud - 1 updated api methods
Changes Added support for tag-on-create for CreateVpcPeeringConnection and CreateRouteTable. You can now specify tags when creating any of these resources. For more information about tagging, see AWS Tagging Strategies. Add poolArn to the response of DescribeCoipPools.
{'CoipPools': {'PoolArn': 'string'}}
Describes the specified customer-owned address pools or all of your customer-owned address pools.
See also: AWS API Documentation
Request Syntax
client.describe_coip_pools( PoolIds=[ 'string', ], Filters=[ { 'Name': 'string', 'Values': [ 'string', ] }, ], MaxResults=123, NextToken='string', DryRun=True|False )
list
The IDs of the address pools.
(string) --
list
The filters. The following are the possible values:
coip-pool.pool-id
coip-pool.local-gateway-route-table-id
(dict) --
A filter name and value pair that is used to return a more specific list of results from a describe operation. Filters can be used to match a set of resources by specific criteria, such as tags, attributes, or IDs. The filters supported by a describe operation are documented with the describe operation. For example:
DescribeAvailabilityZones
DescribeImages
DescribeInstances
DescribeKeyPairs
DescribeSecurityGroups
DescribeSnapshots
DescribeSubnets
DescribeTags
DescribeVolumes
DescribeVpcs
Name (string) --
The name of the filter. Filter names are case-sensitive.
Values (list) --
The filter values. Filter values are case-sensitive.
(string) --
integer
The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.
string
The token for the next page of results.
boolean
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 DryRunOperation . Otherwise, it is UnauthorizedOperation .
dict
Response Syntax
{ 'CoipPools': [ { 'PoolId': 'string', 'PoolCidrs': [ 'string', ], 'LocalGatewayRouteTableId': 'string', 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ], 'PoolArn': 'string' }, ], 'NextToken': 'string' }
Response Structure
(dict) --
CoipPools (list) --
Information about the address pools.
(dict) --
Describes a customer-owned address pool.
PoolId (string) --
The ID of the address pool.
PoolCidrs (list) --
The address ranges of the address pool.
(string) --
LocalGatewayRouteTableId (string) --
The ID of the local gateway route table.
Tags (list) --
The tags.
(dict) --
Describes a tag.
Key (string) --
The key of the tag.
Constraints: Tag keys are case-sensitive and accept a maximum of 127 Unicode characters. May not begin with aws: .
Value (string) --
The value of the tag.
Constraints: Tag values are case-sensitive and accept a maximum of 255 Unicode characters.
PoolArn (string) --
The ARN of the address pool.
NextToken (string) --
The token to use to retrieve the next page of results. This value is null when there are no more results to return.