Class CfnVPNGatewayRoutePropagation

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.190Z") @Stability(Stable) public class CfnVPNGatewayRoutePropagation extends CfnResource implements IInspectable
A CloudFormation AWS::EC2::VPNGatewayRoutePropagation.

Enables a virtual private gateway (VGW) to propagate routes to the specified route table of a VPC.

If you reference a VPN gateway that is in the same template as your VPN gateway route propagation, you must explicitly declare a dependency on the VPN gateway attachment. The AWS::EC2::VPNGatewayRoutePropagation resource cannot use the VPN gateway until it has successfully attached to the VPC. Add a DependsOn Attribute in the AWS::EC2::VPNGatewayRoutePropagation resource to explicitly declare a dependency on the VPN gateway attachment.

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.*;
 CfnVPNGatewayRoutePropagation cfnVPNGatewayRoutePropagation = CfnVPNGatewayRoutePropagation.Builder.create(this, "MyCfnVPNGatewayRoutePropagation")
         .routeTableIds(List.of("routeTableIds"))
         .vpnGatewayId("vpnGatewayId")
         .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

    • CfnVPNGatewayRoutePropagation

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

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

      @Stability(Stable) public CfnVPNGatewayRoutePropagation(@NotNull Construct scope, @NotNull String id, @NotNull CfnVPNGatewayRoutePropagationProps props)
      Create a new AWS::EC2::VPNGatewayRoutePropagation.

      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.
    • getAttrId

      @Stability(Stable) @NotNull public String getAttrId()
      The ID of the VPN gateway.
    • getCfnProperties

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

      @Stability(Stable) @NotNull public List<String> getRouteTableIds()
      The ID of the route table.

      The routing table must be associated with the same VPC that the virtual private gateway is attached to.

    • setRouteTableIds

      @Stability(Stable) public void setRouteTableIds(@NotNull List<String> value)
      The ID of the route table.

      The routing table must be associated with the same VPC that the virtual private gateway is attached to.

    • getVpnGatewayId

      @Stability(Stable) @NotNull public String getVpnGatewayId()
      The ID of the virtual private gateway that is attached to a VPC.

      The virtual private gateway must be attached to the same VPC that the routing tables are associated with.

    • setVpnGatewayId

      @Stability(Stable) public void setVpnGatewayId(@NotNull String value)
      The ID of the virtual private gateway that is attached to a VPC.

      The virtual private gateway must be attached to the same VPC that the routing tables are associated with.