Show / Hide Table of Contents

Interface CfnVerifiedAccessEndpoint.ILoadBalancerOptionsProperty

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

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

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.

Properties

LoadBalancerArn

The ARN of the load balancer.

string? LoadBalancerArn { get; }
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.

double? Port { get; }
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.

object? PortRanges { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnVerifiedAccessEndpoint.IPortRangeProperty)[]

Protocol

The IP protocol.

string? Protocol { get; }
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.

string[]? SubnetIds { get; }
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

Back to top Generated by DocFX