@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)",
date="2023-01-31T18:36:53.260Z")
public interface CfnVPNGatewayRoutePropagationProps
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnVPNGatewayRoutePropagationProps.Builder
A builder for
CfnVPNGatewayRoutePropagationProps |
static class |
CfnVPNGatewayRoutePropagationProps.Jsii$Proxy
An implementation for
CfnVPNGatewayRoutePropagationProps |
Modifier and Type | Method and Description |
---|---|
static CfnVPNGatewayRoutePropagationProps.Builder |
builder() |
java.util.List<java.lang.String> |
getRouteTableIds()
The ID of the route table.
|
java.lang.String |
getVpnGatewayId()
The ID of the virtual private gateway that is attached to a VPC.
|
java.util.List<java.lang.String> getRouteTableIds()
The routing table must be associated with the same VPC that the virtual private gateway is attached to.
java.lang.String getVpnGatewayId()
The virtual private gateway must be attached to the same VPC that the routing tables are associated with.
static CfnVPNGatewayRoutePropagationProps.Builder builder()