Skip to content

List Resource Gateways

vpclattice_list_resource_gateways R Documentation

Lists the resource gateways that you own or that were shared with you

Description

Lists the resource gateways that you own or that were shared with you.

Usage

vpclattice_list_resource_gateways(maxResults, nextToken)

Arguments

maxResults

The maximum page size.

nextToken

If there are additional results, a pagination token for the next page of results.

Value

A list with the following syntax:

list(
  items = list(
    list(
      arn = "string",
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      id = "string",
      ipAddressType = "IPV4"|"IPV6"|"DUALSTACK",
      lastUpdatedAt = as.POSIXct(
        "2015-01-01"
      ),
      name = "string",
      securityGroupIds = list(
        "string"
      ),
      status = "ACTIVE"|"CREATE_IN_PROGRESS"|"UPDATE_IN_PROGRESS"|"DELETE_IN_PROGRESS"|"CREATE_FAILED"|"UPDATE_FAILED"|"DELETE_FAILED",
      subnetIds = list(
        "string"
      ),
      vpcIdentifier = "string"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_resource_gateways(
  maxResults = 123,
  nextToken = "string"
)