Show / Hide Table of Contents

Class CfnVerifiedAccessEndpoint.LoadBalancerOptionsProperty

Describes the load balancer options when creating an AWS Verified Access endpoint using the load-balancer type.

Inheritance
object
CfnVerifiedAccessEndpoint.LoadBalancerOptionsProperty
Implements
CfnVerifiedAccessEndpoint.ILoadBalancerOptionsProperty
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 CfnVerifiedAccessEndpoint.LoadBalancerOptionsProperty : CfnVerifiedAccessEndpoint.ILoadBalancerOptionsProperty
Syntax (vb)
Public Class CfnVerifiedAccessEndpoint.LoadBalancerOptionsProperty Implements CfnVerifiedAccessEndpoint.ILoadBalancerOptionsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-loadbalanceroptions.html

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;

             var loadBalancerOptionsProperty = new LoadBalancerOptionsProperty {
                 LoadBalancerArn = "loadBalancerArn",
                 Port = 123,
                 PortRanges = new [] { new PortRangeProperty {
                     FromPort = 123,
                     ToPort = 123
                 } },
                 Protocol = "protocol",
                 SubnetIds = new [] { "subnetIds" }
             };

Synopsis

Constructors

LoadBalancerOptionsProperty()

Describes the load balancer options when creating an AWS Verified Access endpoint using the load-balancer type.

Properties

LoadBalancerArn

The ARN of the load balancer.

Port

The IP port number.

PortRanges

The port ranges.

Protocol

The IP protocol.

SubnetIds

The IDs of the subnets.

Constructors

LoadBalancerOptionsProperty()

Describes the load balancer options when creating an AWS Verified Access endpoint using the load-balancer type.

public LoadBalancerOptionsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-loadbalanceroptions.html

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;

             var loadBalancerOptionsProperty = new LoadBalancerOptionsProperty {
                 LoadBalancerArn = "loadBalancerArn",
                 Port = 123,
                 PortRanges = new [] { new PortRangeProperty {
                     FromPort = 123,
                     ToPort = 123
                 } },
                 Protocol = "protocol",
                 SubnetIds = new [] { "subnetIds" }
             };

Properties

LoadBalancerArn

The ARN of the load balancer.

public string? LoadBalancerArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-loadbalanceroptions.html#cfn-ec2-verifiedaccessendpoint-loadbalanceroptions-loadbalancerarn

Port

The IP port number.

public double? Port { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-loadbalanceroptions.html#cfn-ec2-verifiedaccessendpoint-loadbalanceroptions-port

PortRanges

The port ranges.

public object? PortRanges { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-loadbalanceroptions.html#cfn-ec2-verifiedaccessendpoint-loadbalanceroptions-portranges

Protocol

The IP protocol.

public string? Protocol { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-loadbalanceroptions.html#cfn-ec2-verifiedaccessendpoint-loadbalanceroptions-protocol

SubnetIds

The IDs of the subnets.

public string[]? SubnetIds { get; set; }
Property Value

string[]

Remarks

You can specify only one subnet per Availability Zone.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-loadbalanceroptions.html#cfn-ec2-verifiedaccessendpoint-loadbalanceroptions-subnetids

Implements

CfnVerifiedAccessEndpoint.ILoadBalancerOptionsProperty
Back to top Generated by DocFX