Skip to content

Get Network Resource Relationships

networkmanager_get_network_resource_relationships R Documentation

Gets the network resource relationships for the specified global network

Description

Gets the network resource relationships for the specified global network.

Usage

networkmanager_get_network_resource_relationships(GlobalNetworkId,
  CoreNetworkId, RegisteredGatewayArn, AwsRegion, AccountId, ResourceType,
  ResourceArn, MaxResults, NextToken)

Arguments

GlobalNetworkId

[required] The ID of the global network.

CoreNetworkId

The ID of a core network.

RegisteredGatewayArn

The ARN of the registered gateway.

AwsRegion

The Amazon Web Services Region.

AccountId

The Amazon Web Services account ID.

ResourceType

The resource type.

The following are the supported resource types for Direct Connect:

  • dxcon

  • dx-gateway

  • dx-vif

The following are the supported resource types for Network Manager:

  • attachment

  • connect-peer

  • connection

  • core-network

  • device

  • link

  • peering

  • site

The following are the supported resource types for Amazon VPC:

  • customer-gateway

  • transit-gateway

  • transit-gateway-attachment

  • transit-gateway-connect-peer

  • transit-gateway-route-table

  • vpn-connection

ResourceArn

The ARN of the gateway.

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(
  Relationships = list(
    list(
      From = "string",
      To = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$get_network_resource_relationships(
  GlobalNetworkId = "string",
  CoreNetworkId = "string",
  RegisteredGatewayArn = "string",
  AwsRegion = "string",
  AccountId = "string",
  ResourceType = "string",
  ResourceArn = "string",
  MaxResults = 123,
  NextToken = "string"
)