Get Network Telemetry
| networkmanager_get_network_telemetry | R Documentation |
Gets the network telemetry of the specified global network¶
Description¶
Gets the network telemetry of the specified global network.
Usage¶
networkmanager_get_network_telemetry(GlobalNetworkId, CoreNetworkId,
RegisteredGatewayArn, AwsRegion, AccountId, ResourceType, ResourceArn,
MaxResults, NextToken)
Arguments¶
GlobalNetworkId[required] The ID of the global network.
CoreNetworkIdThe ID of a core network.
RegisteredGatewayArnThe ARN of the gateway.
AwsRegionThe Amazon Web Services Region.
AccountIdThe Amazon Web Services account ID.
ResourceTypeThe resource type. The following are the supported resource types:
connect-peertransit-gateway-connect-peervpn-connection
ResourceArnThe ARN of the resource.
MaxResultsThe maximum number of results to return.
NextTokenThe token for the next page of results.
Value¶
A list with the following syntax:
list(
NetworkTelemetry = list(
list(
RegisteredGatewayArn = "string",
CoreNetworkId = "string",
AwsRegion = "string",
AccountId = "string",
ResourceType = "string",
ResourceId = "string",
ResourceArn = "string",
Address = "string",
Health = list(
Type = "BGP"|"IPSEC",
Status = "UP"|"DOWN",
Timestamp = as.POSIXct(
"2015-01-01"
)
)
)
),
NextToken = "string"
)