Show / Hide Table of Contents

Class ClientVpnEndpointAttributes

Attributes when importing an existing client VPN endpoint.

Inheritance
object
ClientVpnEndpointAttributes
Implements
IClientVpnEndpointAttributes
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ClientVpnEndpointAttributes : IClientVpnEndpointAttributes
Syntax (vb)
Public Class ClientVpnEndpointAttributes Implements 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;

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

Synopsis

Constructors

ClientVpnEndpointAttributes()

Attributes when importing an existing client VPN endpoint.

Properties

EndpointId

The endpoint ID.

SecurityGroups

The security groups associated with the endpoint.

Constructors

ClientVpnEndpointAttributes()

Attributes when importing an existing client VPN endpoint.

public ClientVpnEndpointAttributes()
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;

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

Properties

EndpointId

The endpoint ID.

public string EndpointId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

SecurityGroups

The security groups associated with the endpoint.

public ISecurityGroup[] SecurityGroups { get; set; }
Property Value

ISecurityGroup[]

Remarks

ExampleMetadata: fixture=_generated

Implements

IClientVpnEndpointAttributes
Back to top Generated by DocFX