@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.385Z") @Stability(value=Stable) public interface CfnVPNGatewayRoutePropagationProps extends software.amazon.jsii.JsiiSerializable
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() |
List<String> |
getRouteTableIds()
The ID of the route table.
|
String |
getVpnGatewayId()
The ID of the virtual private gateway that is attached to a VPC.
|
@Stability(value=Stable) @NotNull List<String> getRouteTableIds()
The routing table must be associated with the same VPC that the virtual private gateway is attached to.
@Stability(value=Stable) @NotNull String getVpnGatewayId()
The virtual private gateway must be attached to the same VPC that the routing tables are associated with.
@Stability(value=Stable) static CfnVPNGatewayRoutePropagationProps.Builder builder()
Copyright © 2022. All rights reserved.