Module Values_2.DescribeAutomationJobResponseSource

Retrieves the status and details of a specified automation job, including its status and outputs.

Sourcetype nonrec t = {
  1. arn : Values_0.Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the automation job.

    *)
  2. createdAt : Values_0.Timestamp.t option;
    (*

    The time that the automation job was created.

    *)
  3. startedAt : Values_0.Timestamp.t option;
    (*

    The time that the automation job started running.

    *)
  4. endedAt : Values_0.Timestamp.t option;
    (*

    The time that the automation job finished running.

    *)
  5. jobStatus : Values_1.AutomationJobStatus.t option;
    (*

    The current status of the automation job.

    *)
  6. inputPayload : SensitiveIOPayload.t option;
    (*

    The input payload that was provided when the automation job was started. This field is only included when IncludeInputPayload is set to true in the request.

    *)
  7. outputPayload : SensitiveIOPayload.t option;
    (*

    The output payload that was generated by the automation job. This field is only included when IncludeOutputPayload is set to true in the request.

    *)
  8. requestId : Values_0.String_.t option;
    (*

    The Amazon Web Services request ID for this operation.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of Values_0.AccessDeniedException.t
  2. | `InternalFailureException of Values_1.InternalFailureException.t
  3. | `InvalidParameterValueException of Values_1.InvalidParameterValueException.t
  4. | `ResourceNotFoundException of Values_1.ResourceNotFoundException.t
  5. | `ThrottlingException of Values_1.ThrottlingException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?createdAt:??? -> ?startedAt:??? -> ?endedAt:??? -> ?jobStatus:??? -> ?inputPayload:??? -> ?outputPayload:??? -> ?requestId:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of Values_0.AccessDeniedException.t | `InternalFailureException of Values_1.InternalFailureException.t | `InvalidParameterValueException of Values_1.InvalidParameterValueException.t | `ResourceNotFoundException of Values_1.ResourceNotFoundException.t | `ThrottlingException of Values_1.ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of Values_0.AccessDeniedException.t | `InternalFailureException of Values_1.InternalFailureException.t | `InvalidParameterValueException of Values_1.InvalidParameterValueException.t | `ResourceNotFoundException of Values_1.ResourceNotFoundException.t | `ThrottlingException of Values_1.ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.Arn.t | `Timestamp of Values_0.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