@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-05-19T23:08:48.562Z") @Stability(value=Stable) public interface CfnConnectPeerProps extends software.amazon.jsii.JsiiSerializable
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") .insideCidrBlocks(List.of("insideCidrBlocks")) .peerAddress("peerAddress") // the properties below are optional .bgpOptions(BgpOptionsProperty.builder() .peerAsn(123) .build()) .coreNetworkAddress("coreNetworkAddress") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnConnectPeerProps.Builder
A builder for
CfnConnectPeerProps |
static class |
CfnConnectPeerProps.Jsii$Proxy
An implementation for
CfnConnectPeerProps |
Modifier and Type | Method and Description |
---|---|
static CfnConnectPeerProps.Builder |
builder() |
default Object |
getBgpOptions()
`AWS::NetworkManager::ConnectPeer.BgpOptions`.
|
String |
getConnectAttachmentId()
The ID of the attachment to connect.
|
default String |
getCoreNetworkAddress()
The IP address of a core network.
|
List<String> |
getInsideCidrBlocks()
The inside IP addresses used for a Connect peer configuration.
|
String |
getPeerAddress()
The IP address of the Connect peer.
|
default List<CfnTag> |
getTags()
The list of key-value tags associated with the Connect peer.
|
@Stability(value=Stable) @NotNull String getConnectAttachmentId()
@Stability(value=Stable) @NotNull List<String> getInsideCidrBlocks()
@Stability(value=Stable) @NotNull String getPeerAddress()
@Stability(value=Stable) @Nullable default Object getBgpOptions()
@Stability(value=Stable) @Nullable default String getCoreNetworkAddress()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnConnectPeerProps.Builder builder()
CfnConnectPeerProps.Builder
of CfnConnectPeerProps
Copyright © 2023. All rights reserved.