Skip to content

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.

TransitGatewayArns

The Amazon Resource Names (ARNs) of one or more transit gateways. 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(
  TransitGatewayRegistrations = list(
    list(
      GlobalNetworkId = "string",
      TransitGatewayArn = "string",
      State = list(
        Code = "PENDING"|"AVAILABLE"|"DELETING"|"DELETED"|"FAILED",
        Message = "string"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$get_transit_gateway_registrations(
  GlobalNetworkId = "string",
  TransitGatewayArns = list(
    "string"
  ),
  MaxResults = 123,
  NextToken = "string"
)