Class CfnNetworkInsightsAnalysis.AnalysisLoadBalancerTargetProperty
Describes a load balancer target.
Inherited Members
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnNetworkInsightsAnalysis.AnalysisLoadBalancerTargetProperty : CfnNetworkInsightsAnalysis.IAnalysisLoadBalancerTargetProperty
Syntax (vb)
Public Class CfnNetworkInsightsAnalysis.AnalysisLoadBalancerTargetProperty Implements CfnNetworkInsightsAnalysis.IAnalysisLoadBalancerTargetProperty
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 analysisLoadBalancerTargetProperty = new AnalysisLoadBalancerTargetProperty {
Address = "address",
AvailabilityZone = "availabilityZone",
Instance = new AnalysisComponentProperty {
Arn = "arn",
Id = "id"
},
Port = 123
};
Synopsis
Constructors
| AnalysisLoadBalancerTargetProperty() | Describes a load balancer target. |
Properties
| Address | The IP address. |
| AvailabilityZone | The Availability Zone. |
| Instance | Information about the instance. |
| Port | The port on which the target is listening. |
Constructors
AnalysisLoadBalancerTargetProperty()
Describes a load balancer target.
public AnalysisLoadBalancerTargetProperty()
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 analysisLoadBalancerTargetProperty = new AnalysisLoadBalancerTargetProperty {
Address = "address",
AvailabilityZone = "availabilityZone",
Instance = new AnalysisComponentProperty {
Arn = "arn",
Id = "id"
},
Port = 123
};
Properties
Address
The IP address.
public string? Address { get; set; }
Property Value
Remarks
AvailabilityZone
The Availability Zone.
public string? AvailabilityZone { get; set; }
Property Value
Remarks
Instance
Information about the instance.
public object? Instance { get; set; }
Property Value
Remarks
Port
The port on which the target is listening.
public double? Port { get; set; }