aws-cdk-lib.aws_ec2.CfnNetworkInsightsAnalysis.AnalysisLoadBalancerTargetProperty

interface AnalysisLoadBalancerTargetProperty

LanguageType name
.NETAmazon.CDK.AWS.EC2.CfnNetworkInsightsAnalysis.AnalysisLoadBalancerTargetProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnNetworkInsightsAnalysis_AnalysisLoadBalancerTargetProperty
Javasoftware.amazon.awscdk.services.ec2.CfnNetworkInsightsAnalysis.AnalysisLoadBalancerTargetProperty
Pythonaws_cdk.aws_ec2.CfnNetworkInsightsAnalysis.AnalysisLoadBalancerTargetProperty
TypeScript aws-cdk-lib » aws_ec2 » CfnNetworkInsightsAnalysis » AnalysisLoadBalancerTargetProperty

Describes a load balancer target.

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 analysisLoadBalancerTargetProperty: ec2.CfnNetworkInsightsAnalysis.AnalysisLoadBalancerTargetProperty = {
  address: 'address',
  availabilityZone: 'availabilityZone',
  instance: {
    arn: 'arn',
    id: 'id',
  },
  port: 123,
};

Properties

NameTypeDescription
address?stringThe IP address.
availabilityZone?stringThe Availability Zone.
instance?IResolvable | AnalysisComponentPropertyInformation about the instance.
port?numberThe port on which the target is listening.

address?

Type: string (optional)

The IP address.


availabilityZone?

Type: string (optional)

The Availability Zone.


instance?

Type: IResolvable | AnalysisComponentProperty (optional)

Information about the instance.


port?

Type: number (optional)

The port on which the target is listening.