LinkAssociationReference
- class aws_cdk.aws_networkmanager.LinkAssociationReference(*, device_id, global_network_id, link_id)
Bases:
object
A reference to a LinkAssociation resource.
- Parameters:
device_id (
str
) – The DeviceId of the LinkAssociation resource.global_network_id (
str
) – The GlobalNetworkId of the LinkAssociation resource.link_id (
str
) – The LinkId of the LinkAssociation 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_association_reference = networkmanager.LinkAssociationReference( device_id="deviceId", global_network_id="globalNetworkId", link_id="linkId" )
Attributes
- device_id
The DeviceId of the LinkAssociation resource.
- global_network_id
The GlobalNetworkId of the LinkAssociation resource.
- link_id
The LinkId of the LinkAssociation resource.