Show / Hide Table of Contents

Interface IClientVpnAuthorizationRuleProps

Properties for a ClientVpnAuthorizationRule.

Inherited Members
IClientVpnAuthorizationRuleOptions.Cidr
IClientVpnAuthorizationRuleOptions.Description
IClientVpnAuthorizationRuleOptions.GroupId
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.AWS.EC2.dll
Syntax (csharp)
public interface IClientVpnAuthorizationRuleProps : IClientVpnAuthorizationRuleOptions
Syntax (vb)
Public Interface IClientVpnAuthorizationRuleProps
    Inherits IClientVpnAuthorizationRuleOptions
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;

ClientVpnAuthorizationRuleProps clientVpnAuthorizationRuleProps = new ClientVpnAuthorizationRuleProps {
    Cidr = "cidr",

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

Synopsis

Properties

ClientVpnEndoint

(deprecated) The client VPN endpoint to which to add the rule.

ClientVpnEndpoint

The client VPN endpoint to which to add the rule.

Properties

ClientVpnEndoint

(deprecated) The client VPN endpoint to which to add the rule.

virtual IClientVpnEndpoint ClientVpnEndoint { get; }
Property Value

IClientVpnEndpoint

Remarks

Default: clientVpnEndpoint is required

Stability: Deprecated

ClientVpnEndpoint

The client VPN endpoint to which to add the rule.

virtual IClientVpnEndpoint ClientVpnEndpoint { get; }
Property Value

IClientVpnEndpoint

Remarks

Default: clientVpnEndpoint is required

Back to top Generated by DocFX