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.
ConnectPeerIdsThe IDs of the Connect peers.
MaxResultsThe maximum number of results to return.
NextTokenThe 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"
)