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 option;
  2. scheduled_action_names : ScheduledActionNames.t;
  3. start_time : Aws.BaseTypes.DateTime.t option;
  4. end_time : Aws.BaseTypes.DateTime.t option;
  5. next_token : Aws.BaseTypes.String.t option;
  6. max_records : Aws.BaseTypes.Integer.t option;
}
val make : ?auto_scaling_group_name:Aws.BaseTypes.String.t -> ?scheduled_action_names:ScheduledActionNames.t -> ?start_time:Aws.BaseTypes.DateTime.t -> ?end_time:Aws.BaseTypes.DateTime.t -> ?next_token:Aws.BaseTypes.String.t -> ?max_records: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