interface CfnTransitGatewayPeeringAttachmentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnTransitGatewayPeeringAttachmentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnTransitGatewayPeeringAttachmentMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnTransitGatewayPeeringAttachmentMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnTransitGatewayPeeringAttachmentMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnTransitGatewayPeeringAttachmentMixinProps |
Properties for CfnTransitGatewayPeeringAttachmentPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnTransitGatewayPeeringAttachmentMixinProps: ec2_mixins.CfnTransitGatewayPeeringAttachmentMixinProps = {
peerAccountId: 'peerAccountId',
peerRegion: 'peerRegion',
peerTransitGatewayId: 'peerTransitGatewayId',
tags: [{
key: 'key',
value: 'value',
}],
transitGatewayId: 'transitGatewayId',
};
Properties
| Name | Type | Description |
|---|---|---|
| peer | string | The ID of the AWS account that owns the transit gateway. |
| peer | string | The Region where the transit gateway that you want to create the peer for is located. |
| peer | string | The ID of the transit gateway in the PeerRegion. |
| tags? | Cfn[] | The tags for the transit gateway peering attachment. |
| transit | string | The ID of the transit gateway peering attachment. |
peerAccountId?
Type:
string
(optional)
The ID of the AWS account that owns the transit gateway.
peerRegion?
Type:
string
(optional)
The Region where the transit gateway that you want to create the peer for is located.
peerTransitGatewayId?
Type:
string
(optional)
The ID of the transit gateway in the PeerRegion.
tags?
Type:
Cfn[]
(optional)
The tags for the transit gateway peering attachment.
transitGatewayId?
Type:
string
(optional)
The ID of the transit gateway peering attachment.

.NET
Go
Java
Python
TypeScript