Describe Vpcs
ec2_describe_vpcs | R Documentation |
Describes your VPCs¶
Description¶
Describes your VPCs. The default is to describe all your VPCs. Alternatively, you can specify specific VPC IDs or filter the results to include only the VPCs that match specific criteria.
Usage¶
ec2_describe_vpcs(Filters, VpcIds, NextToken, MaxResults, DryRun)
Arguments¶
Filters |
The filters.
|
VpcIds |
The IDs of the VPCs. |
NextToken |
The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request. |
MaxResults |
The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination. |
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(
NextToken = "string",
Vpcs = list(
list(
OwnerId = "string",
InstanceTenancy = "default"|"dedicated"|"host",
Ipv6CidrBlockAssociationSet = list(
list(
AssociationId = "string",
Ipv6CidrBlock = "string",
Ipv6CidrBlockState = list(
State = "associating"|"associated"|"disassociating"|"disassociated"|"failing"|"failed",
StatusMessage = "string"
),
NetworkBorderGroup = "string",
Ipv6Pool = "string",
Ipv6AddressAttribute = "public"|"private",
IpSource = "amazon"|"byoip"|"none"
)
),
CidrBlockAssociationSet = list(
list(
AssociationId = "string",
CidrBlock = "string",
CidrBlockState = list(
State = "associating"|"associated"|"disassociating"|"disassociated"|"failing"|"failed",
StatusMessage = "string"
)
)
),
IsDefault = TRUE|FALSE,
Tags = list(
list(
Key = "string",
Value = "string"
)
),
BlockPublicAccessStates = list(
InternetGatewayBlockMode = "off"|"block-bidirectional"|"block-ingress"
),
VpcId = "string",
State = "pending"|"available",
CidrBlock = "string",
DhcpOptionsId = "string"
)
)
)
Request syntax¶
svc$describe_vpcs(
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
VpcIds = list(
"string"
),
NextToken = "string",
MaxResults = 123,
DryRun = TRUE|FALSE
)
Examples¶
## Not run:
# This example describes the specified VPC.
svc$describe_vpcs(
VpcIds = list(
"vpc-a01106c2"
)
)
## End(Not run)