Module Values.JobStepSource

Provides information related to a job step.

Sourcetype nonrec t = {
  1. procStepName : String_.t option;
    (*

    The name of a procedure step.

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

    The number of a procedure step.

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

    A registered step-level checkpoint identifier that can be used for restarting an Amazon Web Services Blu Age application batch job.

    *)
  4. stepCheckpointStatus : String_.t option;
    (*

    The step-level checkpoint status for an Amazon Web Services Blu Age application batch job.

    *)
  5. stepCheckpointTime : Timestamp.t option;
    (*

    The step-level checkpoint status for an Amazon Web Services Blu Age application batch job.

    *)
  6. stepCondCode : String_.t option;
    (*

    The condition code of a step.

    *)
  7. stepName : String_.t option;
    (*

    The name of a step.

    *)
  8. stepNumber : Integer.t option;
    (*

    The number of a step.

    *)
  9. stepRestartable : Boolean.t option;
    (*

    Specifies if a step can be restarted or not.

    *)
}
Sourceval make : ?procStepName:??? -> ?procStepNumber:??? -> ?stepCheckpoint:??? -> ?stepCheckpointStatus:??? -> ?stepCheckpointTime:??? -> ?stepCondCode:??? -> ?stepName:??? -> ?stepNumber:??? -> ?stepRestartable:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `String of String_.t | `Timestamp of Timestamp.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