interface CfnTransitGatewayConnectPeerMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnTransitGatewayConnectPeerMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnTransitGatewayConnectPeerMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnTransitGatewayConnectPeerMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnTransitGatewayConnectPeerMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnTransitGatewayConnectPeerMixinProps |
Properties for CfnTransitGatewayConnectPeerPropsMixin.
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 cfnTransitGatewayConnectPeerMixinProps: ec2_mixins.CfnTransitGatewayConnectPeerMixinProps = {
connectPeerConfiguration: {
bgpConfigurations: [{
bgpStatus: 'bgpStatus',
peerAddress: 'peerAddress',
peerAsn: 123,
transitGatewayAddress: 'transitGatewayAddress',
transitGatewayAsn: 123,
}],
insideCidrBlocks: ['insideCidrBlocks'],
peerAddress: 'peerAddress',
protocol: 'protocol',
transitGatewayAddress: 'transitGatewayAddress',
},
tags: [{
key: 'key',
value: 'value',
}],
transitGatewayAttachmentId: 'transitGatewayAttachmentId',
};
Properties
| Name | Type | Description |
|---|---|---|
| connect | IResolvable | Transit | The Connect peer details. |
| tags? | Cfn[] | The tags for the Connect peer. |
| transit | string | The ID of the Connect attachment. |
connectPeerConfiguration?
Type:
IResolvable | Transit
(optional)
The Connect peer details.
tags?
Type:
Cfn[]
(optional)
The tags for the Connect peer.
transitGatewayAttachmentId?
Type:
string
(optional)
The ID of the Connect attachment.

.NET
Go
Java
Python
TypeScript