Module Values.ScheduledUpdateGroupActionSource

Describes a scheduled scaling action.

Sourcetype nonrec t = {
  1. autoScalingGroupName : XmlStringMaxLen255.t option;
    (*

    The name of the Auto Scaling group.

    *)
  2. scheduledActionName : XmlStringMaxLen255.t option;
    (*

    The name of the scheduled action.

    *)
  3. scheduledActionARN : ResourceName.t option;
    (*

    The Amazon Resource Name (ARN) of the scheduled action.

    *)
  4. time : TimestampType.t option;
    (*

    This property is no longer used.

    *)
  5. startTime : TimestampType.t option;
    (*

    The date and time in UTC for this action to start. For example, "2019-06-01T00:00:00Z".

    *)
  6. endTime : TimestampType.t option;
    (*

    The date and time in UTC for the recurring schedule to end. For example, "2019-06-01T00:00:00Z".

    *)
  7. recurrence : XmlStringMaxLen255.t option;
    (*

    The recurring schedule for the action, in Unix cron syntax format. When StartTime and EndTime are specified with Recurrence, they form the boundaries of when the recurring action starts and stops.

    *)
  8. minSize : AutoScalingGroupMinSize.t option;
    (*

    The minimum size of the Auto Scaling group.

    *)
  9. maxSize : AutoScalingGroupMaxSize.t option;
    (*

    The maximum size of the Auto Scaling group.

    *)
  10. desiredCapacity : AutoScalingGroupDesiredCapacity.t option;
    (*

    The desired capacity is the initial capacity of the Auto Scaling group after the scheduled action runs and the capacity it attempts to maintain.

    *)
  11. timeZone : XmlStringMaxLen255.t option;
    (*

    The time zone for the cron expression.

    *)
}
Sourceval make : ?autoScalingGroupName:??? -> ?scheduledActionName:??? -> ?scheduledActionARN:??? -> ?time:??? -> ?startTime:??? -> ?endTime:??? -> ?recurrence:??? -> ?minSize:??? -> ?maxSize:??? -> ?desiredCapacity:??? -> ?timeZone:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of AutoScalingGroupMinSize.t | `String of XmlStringMaxLen255.t | `Timestamp of TimestampType.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t