@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.045Z") @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()
.bgpOptions(BgpOptionsProperty.builder()
.peerAsn(123)
.build())
.connectAttachmentId("connectAttachmentId")
.coreNetworkAddress("coreNetworkAddress")
.insideCidrBlocks(List.of("insideCidrBlocks"))
.peerAddress("peerAddress")
.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()
The BGP peer options.
|
default String |
getConnectAttachmentId()
The ID of Connect peer.
|
default String |
getCoreNetworkAddress()
The IP address of a core network.
|
default List<String> |
getInsideCidrBlocks()
The inside IP addresses used for a Connect peer configuration.
|
default String |
getPeerAddress()
The IP address of the Connect peer.
|
default List<CfnTag> |
getTags()
The tags associated with the Connect peer.
|
@Stability(value=Stable) @Nullable default Object getBgpOptions()
@Stability(value=Stable) @Nullable default String getConnectAttachmentId()
@Stability(value=Stable) @Nullable default String getCoreNetworkAddress()
@Stability(value=Stable) @Nullable default List<String> getInsideCidrBlocks()
@Stability(value=Stable) @Nullable default String getPeerAddress()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnConnectPeerProps.Builder builder()
CfnConnectPeerProps.Builder of CfnConnectPeerPropsCopyright © 2022. All rights reserved.