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"
)
Request syntax¶
svc$get_connect_peer_associations(
GlobalNetworkId = "string",
ConnectPeerIds = list(
"string"
),
MaxResults = 123,
NextToken = "string"
)