Show / Hide Table of Contents

Interface IClientVpnRouteProps

Properties for a ClientVpnRoute.

Inherited Members
IClientVpnRouteOptions.Cidr
IClientVpnRouteOptions.Target
IClientVpnRouteOptions.Description
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IClientVpnRouteProps : IClientVpnRouteOptions
Syntax (vb)
Public Interface IClientVpnRouteProps Inherits IClientVpnRouteOptions
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.EC2;

            ClientVpnEndpoint clientVpnEndpoint;
            ClientVpnRouteTarget clientVpnRouteTarget;

            var clientVpnRouteProps = new ClientVpnRouteProps {
                Cidr = "cidr",
                Target = clientVpnRouteTarget,

                // the properties below are optional
                ClientVpnEndpoint = clientVpnEndpoint,
                Description = "description"
            };

Synopsis

Properties

ClientVpnEndpoint

The client VPN endpoint to which to add the route.

Properties

ClientVpnEndpoint

The client VPN endpoint to which to add the route.

IClientVpnEndpoint? ClientVpnEndpoint { get; }
Property Value

IClientVpnEndpoint

Remarks

Default: clientVpnEndpoint is required

Back to top Generated by DocFX