interface VpcAttachmentReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.NetworkManager.VpcAttachmentReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsnetworkmanager#VpcAttachmentReference |
Java | software.amazon.awscdk.interfaces.networkmanager.VpcAttachmentReference |
Python | aws_cdk.interfaces.aws_networkmanager.VpcAttachmentReference |
TypeScript | aws-cdk-lib » interfaces » aws_networkmanager » VpcAttachmentReference |
A reference to a VpcAttachment 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 vpcAttachmentReference: interfaces_aws_networkmanager.VpcAttachmentReference = {
attachmentId: 'attachmentId',
};
Properties
| Name | Type | Description |
|---|---|---|
| attachment | string | The AttachmentId of the VpcAttachment resource. |
attachmentId
Type:
string
The AttachmentId of the VpcAttachment resource.

.NET
Go
Java
Python
TypeScript