CfnRouteServerPeerMixinProps
- class aws_cdk.mixins_preview.aws_ec2.mixins.CfnRouteServerPeerMixinProps(*, bgp_options=None, peer_address=None, route_server_endpoint_id=None, tags=None)
Bases:
objectProperties for CfnRouteServerPeerPropsMixin.
- Parameters:
bgp_options (
Union[IResolvable,BgpOptionsProperty,Dict[str,Any],None]) – The BGP configuration options for this peer, including ASN (Autonomous System Number) and BFD (Bidrectional Forwarding Detection) settings.peer_address (
Optional[str]) – The IPv4 address of the peer device.route_server_endpoint_id (
Optional[str]) – The ID of the route server endpoint associated with this peer.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Any tags assigned to the route server peer.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverpeer.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_ec2 import mixins as ec2_mixins cfn_route_server_peer_mixin_props = ec2_mixins.CfnRouteServerPeerMixinProps( bgp_options=ec2_mixins.CfnRouteServerPeerPropsMixin.BgpOptionsProperty( peer_asn=123, peer_liveness_detection="peerLivenessDetection" ), peer_address="peerAddress", route_server_endpoint_id="routeServerEndpointId", tags=[CfnTag( key="key", value="value" )] )
Attributes
- bgp_options
The BGP configuration options for this peer, including ASN (Autonomous System Number) and BFD (Bidrectional Forwarding Detection) settings.
- peer_address
The IPv4 address of the peer device.
- route_server_endpoint_id
The ID of the route server endpoint associated with this peer.
- tags
Any tags assigned to the route server peer.