Skip to content

List Core Networks

networkmanager_list_core_networks R Documentation

Returns a list of owned and shared core networks

Description

Returns a list of owned and shared core networks.

Usage

networkmanager_list_core_networks(MaxResults, NextToken)

Arguments

MaxResults

The maximum number of results to return.

NextToken

The token for the next page of results.

Value

A list with the following syntax:

list(
  CoreNetworks = list(
    list(
      CoreNetworkId = "string",
      CoreNetworkArn = "string",
      GlobalNetworkId = "string",
      OwnerAccountId = "string",
      State = "CREATING"|"UPDATING"|"AVAILABLE"|"DELETING",
      Description = "string",
      Tags = list(
        list(
          Key = "string",
          Value = "string"
        )
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_core_networks(
  MaxResults = 123,
  NextToken = "string"
)