Interface CfnVPNGatewayRoutePropagationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVPNGatewayRoutePropagationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:39.191Z")
@Stability(Stable)
public interface CfnVPNGatewayRoutePropagationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnVPNGatewayRoutePropagation
.
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.*; CfnVPNGatewayRoutePropagationProps cfnVPNGatewayRoutePropagationProps = CfnVPNGatewayRoutePropagationProps.builder() .routeTableIds(List.of("routeTableIds")) .vpnGatewayId("vpnGatewayId") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnVPNGatewayRoutePropagationProps
static final class
An implementation forCfnVPNGatewayRoutePropagationProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The ID of the route table.The ID of the virtual private gateway that is attached to a VPC.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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.
-
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.
-
builder
-