Module AutoScaling.ScheduledAction

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-scheduledaction.html

type properties = {
  1. min_size : int option;
  2. recurrence : string option;
  3. time_zone : string option;
  4. end_time : string option;
  5. auto_scaling_group_name : string;
  6. start_time : string option;
  7. desired_capacity : int option;
  8. max_size : int option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-scheduledaction.html;

val make_properties : ?min_size:int -> ?recurrence:string -> ?time_zone:string -> ?end_time:string -> auto_scaling_group_name:string -> ?start_time:string -> ?desired_capacity:int -> ?max_size:int -> unit -> properties
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. scheduled_action_name : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string