Module Values.JobSource

A job is an asynchronous workflow.

Sourcetype nonrec t = {
  1. jobID : JobID.t option;
    (*

    The ID of the Job.

    *)
  2. arn : ARN.t option;
    (*

    The ARN of a Job.

    *)
  3. type_ : JobType.t option;
    (*

    The type of the Job.

    *)
  4. initiatedBy : InitiatedBy.t option;
    (*

    A string representing who initiated the Job.

    *)
  5. creationDateTime : ISO8601DatetimeString.t option;
    (*

    The date and time of when the Job was created.

    *)
  6. endDateTime : ISO8601DatetimeString.t option;
    (*

    The date and time of when the Job ended.

    *)
  7. status : JobStatus.t option;
    (*

    The status of the Job.

    *)
  8. participatingServers : ParticipatingServers.t option;
    (*

    A list of servers that the Job is acting upon.

    *)
  9. tags : TagsMap.t option;
    (*

    A list of tags associated with the Job.

    *)
  10. participatingResources : ParticipatingResources.t option;
    (*

    A list of resources that the Job is acting upon.

    *)
}
Sourceval make : ?jobID:??? -> ?arn:??? -> ?type_:??? -> ?initiatedBy:??? -> ?creationDateTime:??? -> ?endDateTime:??? -> ?status:??? -> ?participatingServers:??? -> ?tags:??? -> ?participatingResources:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of SourceServerID.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of LaunchActionRunId.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of LaunchActionOrder.t | `Map of ([> `String of LaunchActionParameterName.t ] * [> `Structure of (string * [> `Enum of string | `String of LaunchActionParameterValue.t ]) list ]) list | `String of LaunchActionId.t ]) list ]) list ] list | `String of ISO8601DatetimeString.t ]) list ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of JobID.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