Describe Vpc Peering Connections
ec2_describe_vpc_peering_connections | R Documentation |
Describes your VPC peering connections¶
Description¶
Describes your VPC peering connections. The default is to describe all your VPC peering connections. Alternatively, you can specify specific VPC peering connection IDs or filter the results to include only the VPC peering connections that match specific criteria.
Usage¶
ec2_describe_vpc_peering_connections(NextToken, MaxResults, DryRun,
VpcPeeringConnectionIds, Filters)
Arguments¶
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
|
VpcPeeringConnectionIds |
The IDs of the VPC peering connections. Default: Describes all your VPC peering connections. |
Filters |
The filters.
|
Value¶
A list with the following syntax:
list(
VpcPeeringConnections = list(
list(
AccepterVpcInfo = list(
CidrBlock = "string",
Ipv6CidrBlockSet = list(
list(
Ipv6CidrBlock = "string"
)
),
CidrBlockSet = list(
list(
CidrBlock = "string"
)
),
OwnerId = "string",
PeeringOptions = list(
AllowDnsResolutionFromRemoteVpc = TRUE|FALSE,
AllowEgressFromLocalClassicLinkToRemoteVpc = TRUE|FALSE,
AllowEgressFromLocalVpcToRemoteClassicLink = TRUE|FALSE
),
VpcId = "string",
Region = "string"
),
ExpirationTime = as.POSIXct(
"2015-01-01"
),
RequesterVpcInfo = list(
CidrBlock = "string",
Ipv6CidrBlockSet = list(
list(
Ipv6CidrBlock = "string"
)
),
CidrBlockSet = list(
list(
CidrBlock = "string"
)
),
OwnerId = "string",
PeeringOptions = list(
AllowDnsResolutionFromRemoteVpc = TRUE|FALSE,
AllowEgressFromLocalClassicLinkToRemoteVpc = TRUE|FALSE,
AllowEgressFromLocalVpcToRemoteClassicLink = TRUE|FALSE
),
VpcId = "string",
Region = "string"
),
Status = list(
Code = "initiating-request"|"pending-acceptance"|"active"|"deleted"|"rejected"|"failed"|"expired"|"provisioning"|"deleting",
Message = "string"
),
Tags = list(
list(
Key = "string",
Value = "string"
)
),
VpcPeeringConnectionId = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_vpc_peering_connections(
NextToken = "string",
MaxResults = 123,
DryRun = TRUE|FALSE,
VpcPeeringConnectionIds = list(
"string"
),
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
)
)