interface TransitGatewayPeeringAttachmentReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.EC2.TransitGatewayPeeringAttachmentReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsec2#TransitGatewayPeeringAttachmentReference |
Java | software.amazon.awscdk.interfaces.ec2.TransitGatewayPeeringAttachmentReference |
Python | aws_cdk.interfaces.aws_ec2.TransitGatewayPeeringAttachmentReference |
TypeScript | aws-cdk-lib » interfaces » aws_ec2 » TransitGatewayPeeringAttachmentReference |
A reference to a TransitGatewayPeeringAttachment resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as interfaces_ec2 } from 'aws-cdk-lib/interfaces';
const transitGatewayPeeringAttachmentReference: interfaces_ec2.TransitGatewayPeeringAttachmentReference = {
transitGatewayAttachmentId: 'transitGatewayAttachmentId',
};
Properties
| Name | Type | Description |
|---|---|---|
| transit | string | The TransitGatewayAttachmentId of the TransitGatewayPeeringAttachment resource. |
transitGatewayAttachmentId
Type:
string
The TransitGatewayAttachmentId of the TransitGatewayPeeringAttachment resource.

.NET
Go
Java
Python
TypeScript