Search Local Gateway Routes
ec2_search_local_gateway_routes | R Documentation |
Searches for routes in the specified local gateway route table¶
Description¶
Searches for routes in the specified local gateway route table.
Usage¶
ec2_search_local_gateway_routes(LocalGatewayRouteTableId, Filters,
MaxResults, NextToken, DryRun)
Arguments¶
LocalGatewayRouteTableId |
[required] The ID of the local gateway route table. |
Filters |
One or more filters.
|
MaxResults |
The maximum number of results to return with a single call. To
retrieve the remaining results, make another call with the returned
|
NextToken |
The token for the next page of results. |
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(
Routes = list(
list(
DestinationCidrBlock = "string",
LocalGatewayVirtualInterfaceGroupId = "string",
Type = "static"|"propagated",
State = "pending"|"active"|"blackhole"|"deleting"|"deleted",
LocalGatewayRouteTableId = "string",
LocalGatewayRouteTableArn = "string",
OwnerId = "string",
SubnetId = "string",
CoipPoolId = "string",
NetworkInterfaceId = "string",
DestinationPrefixListId = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$search_local_gateway_routes(
LocalGatewayRouteTableId = "string",
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
MaxResults = 123,
NextToken = "string",
DryRun = TRUE|FALSE
)