Class CfnFleet.TargetTrackingScalingConfigurationProperty
Defines when a new instance is auto-scaled into the compute fleet.
Inherited Members
Namespace: Amazon.CDK.AWS.CodeBuild
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFleet.TargetTrackingScalingConfigurationProperty : CfnFleet.ITargetTrackingScalingConfigurationProperty
Syntax (vb)
Public Class CfnFleet.TargetTrackingScalingConfigurationProperty Implements CfnFleet.ITargetTrackingScalingConfigurationProperty
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.CodeBuild;
var targetTrackingScalingConfigurationProperty = new TargetTrackingScalingConfigurationProperty {
MetricType = "metricType",
TargetValue = 123
};
Synopsis
Constructors
| TargetTrackingScalingConfigurationProperty() | Defines when a new instance is auto-scaled into the compute fleet. |
Properties
| MetricType | The metric type to determine auto-scaling. |
| TargetValue | The value of |
Constructors
TargetTrackingScalingConfigurationProperty()
Defines when a new instance is auto-scaled into the compute fleet.
public TargetTrackingScalingConfigurationProperty()
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.CodeBuild;
var targetTrackingScalingConfigurationProperty = new TargetTrackingScalingConfigurationProperty {
MetricType = "metricType",
TargetValue = 123
};
Properties
MetricType
The metric type to determine auto-scaling.
public string? MetricType { get; set; }
Property Value
Remarks
TargetValue
The value of metricType when to start scaling.
public double? TargetValue { get; set; }