Show / Hide Table of Contents

Interface IWeightedTargetGroup

A Target Group and weight combination.

Namespace: Amazon.CDK.AWS.ElasticLoadBalancingV2
Assembly: Amazon.CDK.AWS.ElasticLoadBalancingV2.dll
Syntax (csharp)
public interface IWeightedTargetGroup
Syntax (vb)
Public Interface IWeightedTargetGroup
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.ElasticLoadBalancingV2;

ApplicationTargetGroup applicationTargetGroup;

var weightedTargetGroup = new WeightedTargetGroup {
    TargetGroup = applicationTargetGroup,

    // the properties below are optional
    Weight = 123
};

Synopsis

Properties

TargetGroup

The target group.

Weight

The target group's weight.

Properties

TargetGroup

The target group.

IApplicationTargetGroup TargetGroup { get; }
Property Value

IApplicationTargetGroup

Weight

The target group's weight.

virtual Nullable<double> Weight { get; }
Property Value

System.Nullable<System.Double>

Remarks

Range is [0..1000).

Default: 1

Back to top Generated by DocFX