Skip to content

List Service Networks

vpclattice_list_service_networks R Documentation

Lists the service networks owned by or shared with this account

Description

Lists the service networks owned by or shared with this account. The account ID in the ARN shows which account owns the service network.

Usage

vpclattice_list_service_networks(maxResults, nextToken)

Arguments

maxResults

The maximum number of results to return.

nextToken

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",
      lastUpdatedAt = as.POSIXct(
        "2015-01-01"
      ),
      name = "string",
      numberOfAssociatedResourceConfigurations = 123,
      numberOfAssociatedServices = 123,
      numberOfAssociatedVPCs = 123
    )
  ),
  nextToken = "string"
)

Request syntax

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