Class CfnVerifiedAccessEndpoint.LoadBalancerOptionsProperty
Describes the load balancer options when creating an AWS Verified Access endpoint using the load-balancer
type.
Inheritance
System.Object
CfnVerifiedAccessEndpoint.LoadBalancerOptionsProperty
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class LoadBalancerOptionsProperty : Object, CfnVerifiedAccessEndpoint.ILoadBalancerOptionsProperty
Syntax (vb)
Public Class LoadBalancerOptionsProperty
Inherits Object
Implements CfnVerifiedAccessEndpoint.ILoadBalancerOptionsProperty
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;
var loadBalancerOptionsProperty = new LoadBalancerOptionsProperty {
LoadBalancerArn = "loadBalancerArn",
Port = 123,
PortRanges = new [] { new PortRangeProperty {
FromPort = 123,
ToPort = 123
} },
Protocol = "protocol",
SubnetIds = new [] { "subnetIds" }
};
Synopsis
Constructors
LoadBalancerOptionsProperty() |
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()
public LoadBalancerOptionsProperty()
Properties
LoadBalancerArn
The ARN of the load balancer.
public string LoadBalancerArn { get; set; }
Property Value
System.String
Remarks
Port
The IP port number.
public Nullable<double> Port { get; set; }
Property Value
System.Nullable<System.Double>
Remarks
PortRanges
The port ranges.
public object PortRanges { get; set; }
Property Value
System.Object
Remarks
Protocol
The IP protocol.
public string Protocol { get; set; }
Property Value
System.String
Remarks
SubnetIds
The IDs of the subnets.
public string[] SubnetIds { get; set; }
Property Value
System.String[]
Remarks
You can specify only one subnet per Availability Zone.