Interface CfnConnectPeerMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectPeerMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:01.848Z")
@Stability(Stable)
public interface CfnConnectPeerMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnConnectPeerPropsMixin.
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.networkmanager.*;
CfnConnectPeerMixinProps cfnConnectPeerMixinProps = CfnConnectPeerMixinProps.builder()
.bgpOptions(BgpOptionsProperty.builder()
.peerAsn(123)
.build())
.connectAttachmentId("connectAttachmentId")
.coreNetworkAddress("coreNetworkAddress")
.insideCidrBlocks(List.of("insideCidrBlocks"))
.peerAddress("peerAddress")
.subnetArn("subnetArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnectPeerMixinPropsstatic final classAn implementation forCfnConnectPeerMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectDescribes the BGP options.default StringThe ID of the attachment to connect.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 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
-
getBgpOptions
Describes the BGP options.Returns union: either
IResolvableorCfnConnectPeerPropsMixin.BgpOptionsProperty- See Also:
-
getConnectAttachmentId
The ID of the attachment to connect.- 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:
-
getPeerAddress
The IP address of the Connect peer.- 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
CfnConnectPeerMixinProps.BuilderofCfnConnectPeerMixinProps
-