Learn R Programming

paws.compute (version 0.1.12)

ec2_search_local_gateway_routes: 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)

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"
    )
  ),
  NextToken = "string"
)

Arguments

LocalGatewayRouteTableId

[required] The ID of the local gateway route table.

Filters

[required] 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 value.

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 DryRunOperation. Otherwise, it is UnauthorizedOperation.

Request syntax

svc$search_local_gateway_routes(
  LocalGatewayRouteTableId = "string",
  Filters = list(
    list(
      Name = "string",
      Values = list(
        "string"
      )
    )
  ),
  MaxResults = 123,
  NextToken = "string",
  DryRun = TRUE|FALSE
)