Get Customer Gateway Associations
networkmanager_get_customer_gateway_associations | R Documentation |
Gets the association information for customer gateways that are associated with devices and links in your global network¶
Description¶
Gets the association information for customer gateways that are associated with devices and links in your global network.
Usage¶
networkmanager_get_customer_gateway_associations(GlobalNetworkId,
CustomerGatewayArns, MaxResults, NextToken)
Arguments¶
GlobalNetworkId |
[required] The ID of the global network. |
CustomerGatewayArns |
One or more customer gateway Amazon Resource Names (ARNs). The maximum is 10. |
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(
CustomerGatewayAssociations = list(
list(
CustomerGatewayArn = "string",
GlobalNetworkId = "string",
DeviceId = "string",
LinkId = "string",
State = "PENDING"|"AVAILABLE"|"DELETING"|"DELETED"
)
),
NextToken = "string"
)
Request syntax¶
svc$get_customer_gateway_associations(
GlobalNetworkId = "string",
CustomerGatewayArns = list(
"string"
),
MaxResults = 123,
NextToken = "string"
)