Interface VpnConnectionProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, VpnConnectionOptions
All Known Implementing Classes:
VpnConnectionProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:06.283Z") @Stability(Stable) public interface VpnConnectionProps extends software.amazon.jsii.JsiiSerializable, VpnConnectionOptions
Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 import software.amazon.awscdk.services.ec2.*;
 SecretValue secretValue;
 Vpc vpc;
 VpnConnectionProps vpnConnectionProps = VpnConnectionProps.builder()
         .ip("ip")
         .vpc(vpc)
         // the properties below are optional
         .asn(123)
         .staticRoutes(List.of("staticRoutes"))
         .tunnelOptions(List.of(VpnTunnelOption.builder()
                 .preSharedKey("preSharedKey")
                 .preSharedKeySecret(secretValue)
                 .tunnelInsideCidr("tunnelInsideCidr")
                 .build()))
         .build();