Get Transit Gateway Registrations
| networkmanager_get_transit_gateway_registrations | R Documentation |
Gets information about the transit gateway registrations in a specified global network¶
Description¶
Gets information about the transit gateway registrations in a specified global network.
Usage¶
networkmanager_get_transit_gateway_registrations(GlobalNetworkId,
TransitGatewayArns, MaxResults, NextToken)
Arguments¶
GlobalNetworkId[required] The ID of the global network.
TransitGatewayArnsThe Amazon Resource Names (ARNs) of one or more transit gateways. The maximum is 10.
MaxResultsThe maximum number of results to return.
NextTokenThe token for the next page of results.
Value¶
A list with the following syntax:
list(
TransitGatewayRegistrations = list(
list(
GlobalNetworkId = "string",
TransitGatewayArn = "string",
State = list(
Code = "PENDING"|"AVAILABLE"|"DELETING"|"DELETED"|"FAILED",
Message = "string"
)
)
),
NextToken = "string"
)