Interface CfnTransitGatewayConnectPeerProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTransitGatewayConnectPeerProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)",
date="2025-09-02T11:25:30.321Z")
@Stability(Stable)
public interface CfnTransitGatewayConnectPeerProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnTransitGatewayConnectPeer
.
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.ec2.*; CfnTransitGatewayConnectPeerProps cfnTransitGatewayConnectPeerProps = CfnTransitGatewayConnectPeerProps.builder() .connectPeerConfiguration(TransitGatewayConnectPeerConfigurationProperty.builder() .insideCidrBlocks(List.of("insideCidrBlocks")) .peerAddress("peerAddress") // the properties below are optional .bgpConfigurations(List.of(TransitGatewayAttachmentBgpConfigurationProperty.builder() .bgpStatus("bgpStatus") .peerAddress("peerAddress") .peerAsn(123) .transitGatewayAddress("transitGatewayAddress") .transitGatewayAsn(123) .build())) .protocol("protocol") .transitGatewayAddress("transitGatewayAddress") .build()) .transitGatewayAttachmentId("transitGatewayAttachmentId") // the properties below are optional .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTransitGatewayConnectPeerProps
static final class
An implementation forCfnTransitGatewayConnectPeerProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectPeerConfiguration
The Connect peer details.- See Also:
-
getTransitGatewayAttachmentId
The ID of the Connect attachment.- See Also:
-
getTags
The tags for the Connect peer.- See Also:
-
builder
-