interface LinkReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.NetworkManager.LinkReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsnetworkmanager#LinkReference |
Java | software.amazon.awscdk.interfaces.networkmanager.LinkReference |
Python | aws_cdk.interfaces.aws_networkmanager.LinkReference |
TypeScript | aws-cdk-lib » interfaces » aws_networkmanager » LinkReference |
A reference to a Link 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 linkReference: interfaces_aws_networkmanager.LinkReference = {
globalNetworkId: 'globalNetworkId',
linkArn: 'linkArn',
linkId: 'linkId',
};
Properties
| Name | Type | Description |
|---|---|---|
| global | string | The GlobalNetworkId of the Link resource. |
| link | string | The ARN of the Link resource. |
| link | string | The LinkId of the Link resource. |
globalNetworkId
Type:
string
The GlobalNetworkId of the Link resource.
linkArn
Type:
string
The ARN of the Link resource.
linkId
Type:
string
The LinkId of the Link resource.

.NET
Go
Java
Python
TypeScript