interface LoadBalancerOptionsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EC2.CfnVerifiedAccessEndpoint.LoadBalancerOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnVerifiedAccessEndpoint_LoadBalancerOptionsProperty |
Java | software.amazon.awscdk.services.ec2.CfnVerifiedAccessEndpoint.LoadBalancerOptionsProperty |
Python | aws_cdk.aws_ec2.CfnVerifiedAccessEndpoint.LoadBalancerOptionsProperty |
TypeScript | aws-cdk-lib » aws_ec2 » CfnVerifiedAccessEndpoint » LoadBalancerOptionsProperty |
Describes the load balancer options when creating an AWS Verified Access endpoint using the load-balancer
type.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
const loadBalancerOptionsProperty: ec2.CfnVerifiedAccessEndpoint.LoadBalancerOptionsProperty = {
loadBalancerArn: 'loadBalancerArn',
port: 123,
protocol: 'protocol',
subnetIds: ['subnetIds'],
};
Properties
Name | Type | Description |
---|---|---|
load | string | The ARN of the load balancer. |
port? | number | The IP port number. |
protocol? | string | The IP protocol. |
subnet | string[] | The IDs of the subnets. |
loadBalancerArn?
Type:
string
(optional)
The ARN of the load balancer.
port?
Type:
number
(optional)
The IP port number.
protocol?
Type:
string
(optional)
The IP protocol.
subnetIds?
Type:
string[]
(optional)
The IDs of the subnets.