Module Types.PutScalingPolicyType
type t={auto_scaling_group_name : Aws.BaseTypes.String.t;policy_name : Aws.BaseTypes.String.t;policy_type : Aws.BaseTypes.String.t option;adjustment_type : Aws.BaseTypes.String.t;min_adjustment_step : Aws.BaseTypes.Integer.t option;min_adjustment_magnitude : Aws.BaseTypes.Integer.t option;scaling_adjustment : Aws.BaseTypes.Integer.t option;cooldown : Aws.BaseTypes.Integer.t option;metric_aggregation_type : Aws.BaseTypes.String.t option;step_adjustments : StepAdjustments.t;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 -> tval parse : Ezxmlm.nodes -> t optionval to_query : t -> Aws.Query.tval to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]val of_json : Aws.Json.t -> t