Class CfnVPNConnectionRoute

java.lang.Object
software.amazon.jsii.JsiiObject
All Implemented Interfaces:
IConstruct, IDependable, IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:39.185Z") @Stability(Stable) public class CfnVPNConnectionRoute extends CfnResource implements IInspectable
A CloudFormation AWS::EC2::VPNConnectionRoute.

Specifies a static route for a VPN connection between an existing virtual private gateway and a VPN customer gateway. The static route allows traffic to be routed from the virtual private gateway to the VPN customer gateway.

For more information, see AWS Site-to-Site VPN in the AWS Site-to-Site VPN User Guide .

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.*;
 CfnVPNConnectionRoute cfnVPNConnectionRoute = CfnVPNConnectionRoute.Builder.create(this, "MyCfnVPNConnectionRoute")
         .destinationCidrBlock("destinationCidrBlock")
         .vpnConnectionId("vpnConnectionId")
         .build();
 
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnVPNConnectionRoute

      protected CfnVPNConnectionRoute(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnVPNConnectionRoute

      protected CfnVPNConnectionRoute(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnVPNConnectionRoute

      @Stability(Stable) public CfnVPNConnectionRoute(@NotNull Construct scope, @NotNull String id, @NotNull CfnVPNConnectionRouteProps props)
      Create a new AWS::EC2::VPNConnectionRoute.

      Parameters:
      scope -
      • scope in which this resource is defined.
      This parameter is required.
      id -
      • scoped id of the resource.
      This parameter is required.
      props -
      • resource properties.
      This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector -
      • tree inspector to collect and process attributes.
      This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getDestinationCidrBlock

      @Stability(Stable) @NotNull public String getDestinationCidrBlock()
      The CIDR block associated with the local subnet of the customer network.
    • setDestinationCidrBlock

      @Stability(Stable) public void setDestinationCidrBlock(@NotNull String value)
      The CIDR block associated with the local subnet of the customer network.
    • getVpnConnectionId

      @Stability(Stable) @NotNull public String getVpnConnectionId()
      The ID of the VPN connection.
    • setVpnConnectionId

      @Stability(Stable) public void setVpnConnectionId(@NotNull String value)
      The ID of the VPN connection.