Interface CfnVPNConnectionRouteProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVPNConnectionRouteProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:39.186Z")
@Stability(Stable)
public interface CfnVPNConnectionRouteProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnVPNConnectionRoute
.
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.*; CfnVPNConnectionRouteProps cfnVPNConnectionRouteProps = CfnVPNConnectionRouteProps.builder() .destinationCidrBlock("destinationCidrBlock") .vpnConnectionId("vpnConnectionId") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnVPNConnectionRouteProps
static final class
An implementation forCfnVPNConnectionRouteProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The CIDR block associated with the local subnet of the customer network.The ID of the VPN connection.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinationCidrBlock
The CIDR block associated with the local subnet of the customer network. -
getVpnConnectionId
The ID of the VPN connection. -
builder
- Returns:
- a
CfnVPNConnectionRouteProps.Builder
ofCfnVPNConnectionRouteProps
-