List Connect Peers
networkmanager_list_connect_peers | R Documentation |
Returns a list of core network Connect peers¶
Description¶
Returns a list of core network Connect peers.
Usage¶
networkmanager_list_connect_peers(CoreNetworkId, ConnectAttachmentId,
MaxResults, NextToken)
Arguments¶
CoreNetworkId |
The ID of a core network. |
ConnectAttachmentId |
The ID of the attachment. |
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(
ConnectPeers = list(
list(
CoreNetworkId = "string",
ConnectAttachmentId = "string",
ConnectPeerId = "string",
EdgeLocation = "string",
ConnectPeerState = "CREATING"|"FAILED"|"AVAILABLE"|"DELETING",
CreatedAt = as.POSIXct(
"2015-01-01"
),
Tags = list(
list(
Key = "string",
Value = "string"
)
),
SubnetArn = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_connect_peers(
CoreNetworkId = "string",
ConnectAttachmentId = "string",
MaxResults = 123,
NextToken = "string"
)