interface CfnTransitGatewayPeeringAttachmentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnTransitGatewayPeeringAttachmentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnTransitGatewayPeeringAttachmentMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnTransitGatewayPeeringAttachmentMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnTransitGatewayPeeringAttachmentMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » 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 { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const cfnTransitGatewayPeeringAttachmentMixinProps: ec2.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 | ITransit | 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 | ITransit
(optional)
The ID of the transit gateway peering attachment.

.NET
Go
Java
Python
TypeScript