Interface VpnConnectionAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
VpnConnectionAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:39.591Z")
@Stability(Stable)
public interface VpnConnectionAttributes
extends software.amazon.jsii.JsiiSerializable
Attributes of an imported VpnConnection.
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.*; VpnConnectionAttributes vpnConnectionAttributes = VpnConnectionAttributes.builder() .customerGatewayAsn(123) .customerGatewayId("customerGatewayId") .customerGatewayIp("customerGatewayIp") .vpnId("vpnId") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forVpnConnectionAttributes
static final class
An implementation forVpnConnectionAttributes
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCustomerGatewayAsn
The ASN of the customer gateway. -
getCustomerGatewayId
The id of the customer gateway. -
getCustomerGatewayIp
The ip address of the customer gateway. -
getVpnId
The id of the VPN connection. -
builder
- Returns:
- a
VpnConnectionAttributes.Builder
ofVpnConnectionAttributes
-