aws-cdk-lib.aws_ec2.CfnVerifiedAccessEndpoint.LoadBalancerOptionsProperty

interface LoadBalancerOptionsProperty

LanguageType name
.NETAmazon.CDK.AWS.EC2.CfnVerifiedAccessEndpoint.LoadBalancerOptionsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnVerifiedAccessEndpoint_LoadBalancerOptionsProperty
Javasoftware.amazon.awscdk.services.ec2.CfnVerifiedAccessEndpoint.LoadBalancerOptionsProperty
Pythonaws_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

NameTypeDescription
loadBalancerArn?stringThe ARN of the load balancer.
port?numberThe IP port number.
protocol?stringThe IP protocol.
subnetIds?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.