Show / Hide Table of Contents

Interface IClientVpnEndpointAttributes

Attributes when importing an existing client VPN endpoint.

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.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;

            var 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

string

Remarks

ExampleMetadata: fixture=_generated

SecurityGroups

The security groups associated with the endpoint.

ISecurityGroup[] SecurityGroups { get; }
Property Value

ISecurityGroup[]

Remarks

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX