Interface CfnConnectPeer.ConnectPeerConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectPeer.ConnectPeerConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnConnectPeer
@Stability(Stable)
public static interface CfnConnectPeer.ConnectPeerConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Describes a core network Connect peer configuration.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.networkmanager.*;
ConnectPeerConfigurationProperty connectPeerConfigurationProperty = ConnectPeerConfigurationProperty.builder()
.bgpConfigurations(List.of(ConnectPeerBgpConfigurationProperty.builder()
.coreNetworkAddress("coreNetworkAddress")
.coreNetworkAsn(123)
.peerAddress("peerAddress")
.peerAsn(123)
.build()))
.coreNetworkAddress("coreNetworkAddress")
.insideCidrBlocks(List.of("insideCidrBlocks"))
.peerAddress("peerAddress")
.protocol("protocol")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnectPeer.ConnectPeerConfigurationPropertystatic final classAn implementation forCfnConnectPeer.ConnectPeerConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe Connect peer BGP configurations.default StringThe IP address of a core network.The inside IP addresses used for a Connect peer configuration.default StringThe IP address of the Connect peer.default StringThe protocol used for a Connect peer configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBgpConfigurations
The Connect peer BGP configurations. -
getCoreNetworkAddress
The IP address of a core network. -
getInsideCidrBlocks
The inside IP addresses used for a Connect peer configuration. -
getPeerAddress
The IP address of the Connect peer. -
getProtocol
The protocol used for a Connect peer configuration. -
builder
-