Get Network Resource Counts
networkmanager_get_network_resource_counts | R Documentation |
Gets the count of network resources, by resource type, for the specified global network¶
Description¶
Gets the count of network resources, by resource type, for the specified global network.
Usage¶
networkmanager_get_network_resource_counts(GlobalNetworkId,
ResourceType, MaxResults, NextToken)
Arguments¶
GlobalNetworkId |
[required] The ID of the global network. |
ResourceType |
The resource type. The following are the supported resource types for Direct Connect:
The following are the supported resource types for Network Manager:
The following are the supported resource types for Amazon VPC:
|
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(
NetworkResourceCounts = list(
list(
ResourceType = "string",
Count = 123
)
),
NextToken = "string"
)
Request syntax¶
svc$get_network_resource_counts(
GlobalNetworkId = "string",
ResourceType = "string",
MaxResults = 123,
NextToken = "string"
)