interface CfnRouteServerPeerMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnRouteServerPeerMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnRouteServerPeerMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnRouteServerPeerMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnRouteServerPeerMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnRouteServerPeerMixinProps |
Properties for CfnRouteServerPeerPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverpeer.html
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 cfnRouteServerPeerMixinProps: ec2_mixins.CfnRouteServerPeerMixinProps = {
bgpOptions: {
peerAsn: 123,
peerLivenessDetection: 'peerLivenessDetection',
},
peerAddress: 'peerAddress',
routeServerEndpointId: 'routeServerEndpointId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| bgp | IResolvable | Bgp | The BGP configuration options for this peer, including ASN (Autonomous System Number) and BFD (Bidrectional Forwarding Detection) settings. |
| peer | string | The IPv4 address of the peer device. |
| route | string | The ID of the route server endpoint associated with this peer. |
| tags? | Cfn[] | Any tags assigned to the route server peer. |
bgpOptions?
Type:
IResolvable | Bgp
(optional)
The BGP configuration options for this peer, including ASN (Autonomous System Number) and BFD (Bidrectional Forwarding Detection) settings.
peerAddress?
Type:
string
(optional)
The IPv4 address of the peer device.
routeServerEndpointId?
Type:
string
(optional)
The ID of the route server endpoint associated with this peer.
tags?
Type:
Cfn[]
(optional)
Any tags assigned to the route server peer.

.NET
Go
Java
Python
TypeScript