interface TransitGatewayConnectPeerConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnTransitGatewayConnectPeerPropsMixin.TransitGatewayConnectPeerConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnTransitGatewayConnectPeerPropsMixin_TransitGatewayConnectPeerConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnTransitGatewayConnectPeerPropsMixin.TransitGatewayConnectPeerConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnTransitGatewayConnectPeerPropsMixin.TransitGatewayConnectPeerConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnTransitGatewayConnectPeerPropsMixin » TransitGatewayConnectPeerConfigurationProperty |
Describes the Connect peer details.
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 transitGatewayConnectPeerConfigurationProperty: ec2_mixins.CfnTransitGatewayConnectPeerPropsMixin.TransitGatewayConnectPeerConfigurationProperty = {
bgpConfigurations: [{
bgpStatus: 'bgpStatus',
peerAddress: 'peerAddress',
peerAsn: 123,
transitGatewayAddress: 'transitGatewayAddress',
transitGatewayAsn: 123,
}],
insideCidrBlocks: ['insideCidrBlocks'],
peerAddress: 'peerAddress',
protocol: 'protocol',
transitGatewayAddress: 'transitGatewayAddress',
};
Properties
| Name | Type | Description |
|---|---|---|
| bgp | IResolvable | (IResolvable | Transit)[] | The BGP configuration details. |
| inside | string[] | The range of interior BGP peer IP addresses. |
| peer | string | The Connect peer IP address on the appliance side of the tunnel. |
| protocol? | string | The tunnel protocol. |
| transit | string | The Connect peer IP address on the transit gateway side of the tunnel. |
bgpConfigurations?
Type:
IResolvable | (IResolvable | Transit)[]
(optional)
The BGP configuration details.
insideCidrBlocks?
Type:
string[]
(optional)
The range of interior BGP peer IP addresses.
peerAddress?
Type:
string
(optional)
The Connect peer IP address on the appliance side of the tunnel.
protocol?
Type:
string
(optional)
The tunnel protocol.
transitGatewayAddress?
Type:
string
(optional)
The Connect peer IP address on the transit gateway side of the tunnel.

.NET
Go
Java
Python
TypeScript