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 ILoadBalancerOptionsProperty
Syntax (vb)
Public Interface 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
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.
virtual string LoadBalancerArn { get; }
Property Value
System.String
Remarks
Port
The IP port number.
virtual Nullable<double> Port { get; }
Property Value
System.Nullable<System.Double>
Remarks
PortRanges
The port ranges.
virtual object PortRanges { get; }
Property Value
System.Object
Remarks
Protocol
The IP protocol.
virtual string Protocol { get; }
Property Value
System.String
Remarks
SubnetIds
The IDs of the subnets.
virtual string[] SubnetIds { get; }
Property Value
System.String[]
Remarks
You can specify only one subnet per Availability Zone.