LinkAssociationReference
- class aws_cdk.interfaces.aws_networkmanager.LinkAssociationReference(*, device_id, global_network_id, link_id)
Bases:
objectA 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.interfaces import aws_networkmanager as interfaces_aws_networkmanager link_association_reference = interfaces_aws_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.