Get Network Resources
| networkmanager_get_network_resources | R Documentation |
Describes the network resources for the specified global network¶
Description¶
Describes the network resources for the specified global network.
The results include information from the corresponding Describe call for the resource, minus any sensitive information such as pre-shared keys.
Usage¶
networkmanager_get_network_resources(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 for Direct Connect:
dxcondx-gatewaydx-vif
The following are the supported resource types for Network Manager:
attachmentconnect-peerconnectioncore-networkdevicelinkpeeringsite
The following are the supported resource types for Amazon VPC:
customer-gatewaytransit-gatewaytransit-gateway-attachmenttransit-gateway-connect-peertransit-gateway-route-tablevpn-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(
NetworkResources = list(
list(
RegisteredGatewayArn = "string",
CoreNetworkId = "string",
AwsRegion = "string",
AccountId = "string",
ResourceType = "string",
ResourceId = "string",
ResourceArn = "string",
Definition = "string",
DefinitionTimestamp = as.POSIXct(
"2015-01-01"
),
Tags = list(
list(
Key = "string",
Value = "string"
)
),
Metadata = list(
"string"
)
)
),
NextToken = "string"
)