package aws-autoscaling

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. auto_scaling_group_name : Aws.BaseTypes.String.t;
  2. policy_name : Aws.BaseTypes.String.t;
  3. policy_type : Aws.BaseTypes.String.t option;
  4. adjustment_type : Aws.BaseTypes.String.t;
  5. min_adjustment_step : Aws.BaseTypes.Integer.t option;
  6. min_adjustment_magnitude : Aws.BaseTypes.Integer.t option;
  7. scaling_adjustment : Aws.BaseTypes.Integer.t option;
  8. cooldown : Aws.BaseTypes.Integer.t option;
  9. metric_aggregation_type : Aws.BaseTypes.String.t option;
  10. step_adjustments : StepAdjustments.t;
  11. estimated_instance_warmup : Aws.BaseTypes.Integer.t option;
}
val make : auto_scaling_group_name:Aws.BaseTypes.String.t -> policy_name:Aws.BaseTypes.String.t -> ?policy_type:Aws.BaseTypes.String.t -> adjustment_type:Aws.BaseTypes.String.t -> ?min_adjustment_step:Aws.BaseTypes.Integer.t -> ?min_adjustment_magnitude:Aws.BaseTypes.Integer.t -> ?scaling_adjustment:Aws.BaseTypes.Integer.t -> ?cooldown:Aws.BaseTypes.Integer.t -> ?metric_aggregation_type:Aws.BaseTypes.String.t -> ?step_adjustments:StepAdjustments.t -> ?estimated_instance_warmup:Aws.BaseTypes.Integer.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t