Module Values.JobSource

Job.

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

    Job ID.

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

    the ARN of the specific Job.

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

    Job type.

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

    Job initiated by field.

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

    Job creation time.

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

    Job end time.

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

    Job status.

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

    Servers participating in a specific Job.

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

    Tags associated with specific Job.

    *)
}
Sourceval make : ?jobID:??? -> ?arn:??? -> ?type_:??? -> ?initiatedBy:??? -> ?creationDateTime:??? -> ?endDateTime:??? -> ?status:??? -> ?participatingServers:??? -> ?tags:??? -> 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 BoundedString.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of StrictlyPositiveInteger.t | `Map of ([> `String of SsmDocumentParameterName.t ] * [> `List of [> `Structure of (string * [> `Enum of string | `String of SsmParameterStoreParameterName.t ]) list ] list | `Structure of (string * [> `String of JmesPathString.t ]) list ]) list | `String of BoundedString.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