Interface CfnConnectPeerProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectPeerProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:25:02.606Z")
@Stability(Stable)
public interface CfnConnectPeerProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnConnectPeer
.
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.*; CfnConnectPeerProps cfnConnectPeerProps = CfnConnectPeerProps.builder() .connectAttachmentId("connectAttachmentId") .peerAddress("peerAddress") // the properties below are optional .bgpOptions(BgpOptionsProperty.builder() .peerAsn(123) .build()) .coreNetworkAddress("coreNetworkAddress") .insideCidrBlocks(List.of("insideCidrBlocks")) .subnetArn("subnetArn") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConnectPeerProps
static final class
An implementation forCfnConnectPeerProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnConnectPeerProps.Builder
builder()
default Object
Describes the BGP options.The ID of the attachment to connect.default String
The IP address of a core network.The inside IP addresses used for a Connect peer configuration.The IP address of the Connect peer.default String
The subnet ARN of the Connect peer.getTags()
The list of key-value tags associated with the Connect peer.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectAttachmentId
The ID of the attachment to connect.- See Also:
-
getPeerAddress
The IP address of the Connect peer.- See Also:
-
getBgpOptions
Describes the BGP options.- See Also:
-
getCoreNetworkAddress
The IP address of a core network.- See Also:
-
getInsideCidrBlocks
The inside IP addresses used for a Connect peer configuration.- See Also:
-
getSubnetArn
The subnet ARN of the Connect peer.- See Also:
-
getTags
The list of key-value tags associated with the Connect peer.- See Also:
-
builder
- Returns:
- a
CfnConnectPeerProps.Builder
ofCfnConnectPeerProps
-