Get Link Associations
| networkmanager_get_link_associations | R Documentation |
Gets the link associations for a device or a link¶
Description¶
Gets the link associations for a device or a link. Either the device ID or the link ID must be specified.
Usage¶
Arguments¶
GlobalNetworkId[required] The ID of the global network.
DeviceIdThe ID of the device.
LinkIdThe ID of the link.
MaxResultsThe maximum number of results to return.
NextTokenThe 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"
)