Interface CfnTransitGatewayConnectPeer.TransitGatewayAttachmentBgpConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTransitGatewayConnectPeer.TransitGatewayAttachmentBgpConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnTransitGatewayConnectPeer
@Stability(Stable)
public static interface CfnTransitGatewayConnectPeer.TransitGatewayAttachmentBgpConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The BGP configuration information.
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.*;
TransitGatewayAttachmentBgpConfigurationProperty transitGatewayAttachmentBgpConfigurationProperty = TransitGatewayAttachmentBgpConfigurationProperty.builder()
.bgpStatus("bgpStatus")
.peerAddress("peerAddress")
.peerAsn(123)
.transitGatewayAddress("transitGatewayAddress")
.transitGatewayAsn(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnTransitGatewayConnectPeer.TransitGatewayAttachmentBgpConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe BGP status.default StringThe interior BGP peer IP address for the appliance.default NumberThe peer Autonomous System Number (ASN).default StringThe interior BGP peer IP address for the transit gateway.default NumberThe transit gateway Autonomous System Number (ASN).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBgpStatus
The BGP status.- See Also:
-
getPeerAddress
The interior BGP peer IP address for the appliance.- See Also:
-
getPeerAsn
The peer Autonomous System Number (ASN).- See Also:
-
getTransitGatewayAddress
The interior BGP peer IP address for the transit gateway.- See Also:
-
getTransitGatewayAsn
The transit gateway Autonomous System Number (ASN).- See Also:
-
builder
@Stability(Stable) static CfnTransitGatewayConnectPeer.TransitGatewayAttachmentBgpConfigurationProperty.Builder builder()
-