Module Values_0.ProgressCountersSource

An aggregate of step execution statuses displayed in the Amazon Web Services Systems Manager console for a multi-Region and multi-account Automation execution.

Sourcetype nonrec t = {
  1. totalSteps : Integer.t option;
    (*

    The total number of steps run in all specified Amazon Web Services Regions and Amazon Web Services accounts for the current Automation execution.

    *)
  2. successSteps : Integer.t option;
    (*

    The total number of steps that successfully completed in all specified Amazon Web Services Regions and Amazon Web Services accounts for the current Automation execution.

    *)
  3. failedSteps : Integer.t option;
    (*

    The total number of steps that failed to run in all specified Amazon Web Services Regions and Amazon Web Services accounts for the current Automation execution.

    *)
  4. cancelledSteps : Integer.t option;
    (*

    The total number of steps that the system cancelled in all specified Amazon Web Services Regions and Amazon Web Services accounts for the current Automation execution.

    *)
  5. timedOutSteps : Integer.t option;
    (*

    The total number of steps that timed out in all specified Amazon Web Services Regions and Amazon Web Services accounts for the current Automation execution.

    *)
}
Sourceval make : ?totalSteps:??? -> ?successSteps:??? -> ?failedSteps:??? -> ?cancelledSteps:??? -> ?timedOutSteps:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.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