Show / Hide Table of Contents

Class CfnNetworkInsightsAnalysis.AnalysisLoadBalancerTargetProperty

Describes a load balancer target.

Inheritance
object
CfnNetworkInsightsAnalysis.AnalysisLoadBalancerTargetProperty
Implements
CfnNetworkInsightsAnalysis.IAnalysisLoadBalancerTargetProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsanalysis-analysisloadbalancertarget.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsanalysis-analysisloadbalancertarget.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsanalysis-analysisloadbalancertarget.html#cfn-ec2-networkinsightsanalysis-analysisloadbalancertarget-address

AvailabilityZone

The Availability Zone.

public string? AvailabilityZone { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsanalysis-analysisloadbalancertarget.html#cfn-ec2-networkinsightsanalysis-analysisloadbalancertarget-availabilityzone

Instance

Information about the instance.

public object? Instance { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsanalysis-analysisloadbalancertarget.html#cfn-ec2-networkinsightsanalysis-analysisloadbalancertarget-instance

Type union: either IResolvable or CfnNetworkInsightsAnalysis.IAnalysisComponentProperty

Port

The port on which the target is listening.

public double? Port { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsanalysis-analysisloadbalancertarget.html#cfn-ec2-networkinsightsanalysis-analysisloadbalancertarget-port

Implements

CfnNetworkInsightsAnalysis.IAnalysisLoadBalancerTargetProperty
Back to top Generated by DocFX