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
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
Remarks
Port
The IP port number.
double? Port { get; }
Property Value
Remarks
PortRanges
The port ranges.
object? PortRanges { get; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnVerifiedAccessEndpoint.IPortRangeProperty)[]
Protocol
The IP protocol.
string? Protocol { get; }
Property Value
Remarks
SubnetIds
The IDs of the subnets.
string[]? SubnetIds { get; }
Property Value
string[]
Remarks
You can specify only one subnet per Availability Zone.