interface LinkAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.NetworkManager.LinkAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsnetworkmanager#LinkAssociationReference |
Java | software.amazon.awscdk.interfaces.networkmanager.LinkAssociationReference |
Python | aws_cdk.interfaces.aws_networkmanager.LinkAssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_networkmanager » LinkAssociationReference |
A reference to a LinkAssociation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_networkmanager as interfaces_aws_networkmanager } from 'aws-cdk-lib/interfaces';
const linkAssociationReference: interfaces_aws_networkmanager.LinkAssociationReference = {
deviceId: 'deviceId',
globalNetworkId: 'globalNetworkId',
linkId: 'linkId',
};
Properties
| Name | Type | Description |
|---|---|---|
| device | string | The DeviceId of the LinkAssociation resource. |
| global | string | The GlobalNetworkId of the LinkAssociation resource. |
| link | string | The LinkId of the LinkAssociation resource. |
deviceId
Type:
string
The DeviceId of the LinkAssociation resource.
globalNetworkId
Type:
string
The GlobalNetworkId of the LinkAssociation resource.
linkId
Type:
string
The LinkId of the LinkAssociation resource.

.NET
Go
Java
Python
TypeScript