@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.384Z") @Stability(value=Stable) public class CfnVPNGatewayRoutePropagation extends CfnResource implements IInspectable
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();
| Modifier and Type | Class and Description |
|---|---|
static class |
CfnVPNGatewayRoutePropagation.Builder
A fluent builder for
CfnVPNGatewayRoutePropagation. |
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$Proxy| Modifier and Type | Field and Description |
|---|---|
static String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
| Modifier | Constructor and Description |
|---|---|
|
CfnVPNGatewayRoutePropagation(software.constructs.Construct scope,
String id,
CfnVPNGatewayRoutePropagationProps props)
Create a new `AWS::EC2::VPNGatewayRoutePropagation`.
|
protected |
CfnVPNGatewayRoutePropagation(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnVPNGatewayRoutePropagation(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
String |
getAttrId()
The ID of the VPN gateway.
|
protected Map<String,Object> |
getCfnProperties() |
List<String> |
getRouteTableIds()
The ID of the route table.
|
String |
getVpnGatewayId()
The ID of the virtual private gateway that is attached to a VPC.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setRouteTableIds(List<String> value)
The ID of the route table.
|
void |
setVpnGatewayId(String value)
The ID of the virtual private gateway that is attached to a VPC.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, shouldSynthesize, toString, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnVPNGatewayRoutePropagation(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnVPNGatewayRoutePropagation(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnVPNGatewayRoutePropagation(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
CfnVPNGatewayRoutePropagationProps props)
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.@Stability(value=Stable)
public void inspect(@NotNull
TreeInspector inspector)
inspect in interface IInspectableinspector - - tree inspector to collect and process attributes. This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
renderProperties in class CfnResourceprops - This parameter is required.@Stability(value=Stable) @NotNull public String getAttrId()
@Stability(value=Stable) @NotNull protected Map<String,Object> getCfnProperties()
getCfnProperties in class CfnResource@Stability(value=Stable) @NotNull public List<String> getRouteTableIds()
The routing table must be associated with the same VPC that the virtual private gateway is attached to.
@Stability(value=Stable)
public void setRouteTableIds(@NotNull
List<String> value)
The routing table must be associated with the same VPC that the virtual private gateway is attached to.
@Stability(value=Stable) @NotNull public String getVpnGatewayId()
The virtual private gateway must be attached to the same VPC that the routing tables are associated with.
@Stability(value=Stable)
public void setVpnGatewayId(@NotNull
String value)
The virtual private gateway must be attached to the same VPC that the routing tables are associated with.
Copyright © 2022. All rights reserved.