Interface CfnRouteServerPeerMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRouteServerPeerMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:58.617Z")
@Stability(Stable)
public interface CfnRouteServerPeerMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnRouteServerPeerPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.ec2.*;
CfnRouteServerPeerMixinProps cfnRouteServerPeerMixinProps = CfnRouteServerPeerMixinProps.builder()
.bgpOptions(BgpOptionsProperty.builder()
.peerAsn(123)
.peerLivenessDetection("peerLivenessDetection")
.build())
.peerAddress("peerAddress")
.routeServerEndpointId("routeServerEndpointId")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRouteServerPeerMixinPropsstatic final classAn implementation forCfnRouteServerPeerMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe BGP configuration options for this peer, including ASN (Autonomous System Number) and BFD (Bidrectional Forwarding Detection) settings.default StringThe IPv4 address of the peer device.default StringThe ID of the route server endpoint associated with this peer.getTags()Any tags assigned to the route server peer.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBgpOptions
The BGP configuration options for this peer, including ASN (Autonomous System Number) and BFD (Bidrectional Forwarding Detection) settings.Returns union: either
IResolvableorCfnRouteServerPeerPropsMixin.BgpOptionsProperty- See Also:
-
getPeerAddress
The IPv4 address of the peer device.- See Also:
-
getRouteServerEndpointId
The ID of the route server endpoint associated with this peer.- See Also:
-
getTags
Any tags assigned to the route server peer.- See Also:
-
builder
-