TargetTrackingConfiguration constructor

TargetTrackingConfiguration({
  1. required double targetValue,
  2. CustomizedScalingMetricSpecification? customizedScalingMetricSpecification,
  3. bool? disableScaleIn,
  4. int? estimatedInstanceWarmup,
  5. PredefinedScalingMetricSpecification? predefinedScalingMetricSpecification,
  6. int? scaleInCooldown,
  7. int? scaleOutCooldown,
})

Implementation

TargetTrackingConfiguration({
  required this.targetValue,
  this.customizedScalingMetricSpecification,
  this.disableScaleIn,
  this.estimatedInstanceWarmup,
  this.predefinedScalingMetricSpecification,
  this.scaleInCooldown,
  this.scaleOutCooldown,
});