Skip to content

Get Link Associations

networkmanager_get_link_associations R Documentation

Description

Gets the link associations for a device or a link. Either the device ID or the link ID must be specified.

Usage

networkmanager_get_link_associations(GlobalNetworkId, DeviceId, LinkId,
  MaxResults, NextToken)

Arguments

GlobalNetworkId

[required] The ID of the global network.

DeviceId

The ID of the device.

LinkId

The ID of the link.

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(
  LinkAssociations = list(
    list(
      GlobalNetworkId = "string",
      DeviceId = "string",
      LinkId = "string",
      LinkAssociationState = "PENDING"|"AVAILABLE"|"DELETING"|"DELETED"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$get_link_associations(
  GlobalNetworkId = "string",
  DeviceId = "string",
  LinkId = "string",
  MaxResults = 123,
  NextToken = "string"
)