CfnVPNConnectionRouteMixinProps
- class aws_cdk.cfn_property_mixins.aws_ec2.CfnVPNConnectionRouteMixinProps(*, destination_cidr_block=None, vpn_connection_id=None)
Bases:
objectProperties for CfnVPNConnectionRoutePropsMixin.
- Parameters:
destination_cidr_block (
Optional[str]) – The CIDR block associated with the local subnet of the customer network.vpn_connection_id (
Union[str,IVPNConnectionRef,None]) – The ID of the VPN connection.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_ec2 as ec2 cfn_vPNConnection_route_mixin_props = ec2.CfnVPNConnectionRouteMixinProps( destination_cidr_block="destinationCidrBlock", vpn_connection_id="vpnConnectionId" )
Attributes
- destination_cidr_block
The CIDR block associated with the local subnet of the customer network.
- vpn_connection_id
The ID of the VPN connection.