LinkReference

class aws_cdk.aws_networkmanager.LinkReference(*, global_network_id, link_arn, link_id)

Bases: object

A reference to a Link resource.

Parameters:
  • global_network_id (str) – The GlobalNetworkId of the Link resource.

  • link_arn (str) – The ARN of the Link resource.

  • link_id (str) – The LinkId of the Link resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_networkmanager as networkmanager

link_reference = networkmanager.LinkReference(
    global_network_id="globalNetworkId",
    link_arn="linkArn",
    link_id="linkId"
)

Attributes

global_network_id

The GlobalNetworkId of the Link resource.

The ARN of the Link resource.

The LinkId of the Link resource.