interface TransitGatewayConnectPeerConfigurationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.EC2.CfnTransitGatewayConnectPeer.TransitGatewayConnectPeerConfigurationProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnTransitGatewayConnectPeer_TransitGatewayConnectPeerConfigurationProperty |
![]() | software.amazon.awscdk.services.ec2.CfnTransitGatewayConnectPeer.TransitGatewayConnectPeerConfigurationProperty |
![]() | aws_cdk.aws_ec2.CfnTransitGatewayConnectPeer.TransitGatewayConnectPeerConfigurationProperty |
![]() | aws-cdk-lib » aws_ec2 » CfnTransitGatewayConnectPeer » 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 { aws_ec2 as ec2 } from 'aws-cdk-lib';
const transitGatewayConnectPeerConfigurationProperty: ec2.CfnTransitGatewayConnectPeer.TransitGatewayConnectPeerConfigurationProperty = {
insideCidrBlocks: ['insideCidrBlocks'],
peerAddress: 'peerAddress',
// the properties below are optional
bgpConfigurations: [{
bgpStatus: 'bgpStatus',
peerAddress: 'peerAddress',
peerAsn: 123,
transitGatewayAddress: 'transitGatewayAddress',
transitGatewayAsn: 123,
}],
protocol: 'protocol',
transitGatewayAddress: 'transitGatewayAddress',
};
Properties
Name | Type | Description |
---|---|---|
inside | string[] | The range of interior BGP peer IP addresses. |
peer | string | The Connect peer IP address on the appliance side of the tunnel. |
bgp | IResolvable | IResolvable | Transit [] | The BGP configuration details. |
protocol? | string | The tunnel protocol. |
transit | string | The Connect peer IP address on the transit gateway side of the tunnel. |
insideCidrBlocks
Type:
string[]
The range of interior BGP peer IP addresses.
peerAddress
Type:
string
The Connect peer IP address on the appliance side of the tunnel.
bgpConfigurations?
Type:
IResolvable
|
IResolvable
|
Transit
[]
(optional)
The BGP configuration details.
protocol?
Type:
string
(optional)
The tunnel protocol.
transitGatewayAddress?
Type:
string
(optional)
The Connect peer IP address on the transit gateway side of the tunnel.