Show / Hide Table of Contents

Interface IClientVpnEndpointAttributes

Attributes when importing an existing client VPN endpoint.

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.AWS.EC2.dll
Syntax (csharp)
public interface IClientVpnEndpointAttributes
Syntax (vb)
Public Interface IClientVpnEndpointAttributes
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;

SecurityGroup securityGroup;

ClientVpnEndpointAttributes clientVpnEndpointAttributes = new ClientVpnEndpointAttributes {
    EndpointId = "endpointId",
    SecurityGroups = new [] { securityGroup }
};

Synopsis

Properties

EndpointId

The endpoint ID.

SecurityGroups

The security groups associated with the endpoint.

Properties

EndpointId

The endpoint ID.

string EndpointId { get; }
Property Value

System.String

SecurityGroups

The security groups associated with the endpoint.

ISecurityGroup[] SecurityGroups { get; }
Property Value

ISecurityGroup[]

Back to top Generated by DocFX