Skip to content

List Service Networks

vpclattice_list_service_networks R Documentation

Lists the service networks owned by the caller account or shared with the caller account

Description

Lists the service networks owned by the caller account or shared with the caller account. Also includes the account ID in the ARN to show 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",
      numberOfAssociatedServices = 123,
      numberOfAssociatedVPCs = 123
    )
  ),
  nextToken = "string"
)

Request syntax

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