Module Values.JobDetailsSource

Represents information about the details of a job.

Sourcetype nonrec t = {
  1. id : JobId.t option;
    (*

    The unique system-generated ID of the job.

    *)
  2. data : JobData.t option;
    (*

    Represents other information about a job required for a job worker to complete the job.

    *)
  3. accountId : AccountId.t option;
    (*

    The Amazon Web Services account ID associated with the job.

    *)
}
Sourceval make : ?id:??? -> ?data:??? -> ?accountId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of JobId.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of ArtifactName.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of S3BucketName.t ]) list ]) list ]) list ] list | `String of ContinuationToken.t | `Structure of (string * [> `Enum of string | `Map of ([> `String of ActionConfigurationKey.t ] * [> `String of ActionConfigurationValue.t ]) list | `String of ActionProvider.t | `Structure of (string * [> `String of StageName.t ]) list ]) list ]) list ]) 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