Get Connect Peer Associations
networkmanager_get_connect_peer_associations | R Documentation |
Returns information about a core network Connect peer associations¶
Description¶
Returns information about a core network Connect peer associations.
Usage¶
networkmanager_get_connect_peer_associations(GlobalNetworkId,
ConnectPeerIds, MaxResults, NextToken)
Arguments¶
GlobalNetworkId
[required] The ID of the global network.
ConnectPeerIds
The IDs of the Connect peers.
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(
ConnectPeerAssociations = list(
list(
ConnectPeerId = "string",
GlobalNetworkId = "string",
DeviceId = "string",
LinkId = "string",
State = "PENDING"|"AVAILABLE"|"DELETING"|"DELETED"
)
),
NextToken = "string"
)