Module Values.GetAsyncInvokeResponseSource

Retrieve information about an asynchronous invocation.

Sourcetype nonrec t = {
  1. invocationArn : InvocationArn.t option;
    (*

    The invocation's ARN.

    *)
  2. modelArn : AsyncInvokeArn.t option;
    (*

    The invocation's model ARN.

    *)
  3. clientRequestToken : AsyncInvokeIdempotencyToken.t option;
    (*

    The invocation's idempotency token.

    *)
  4. status : AsyncInvokeStatus.t option;
    (*

    The invocation's status.

    *)
  5. failureMessage : AsyncInvokeMessage.t option;
    (*

    An error message.

    *)
  6. submitTime : Timestamp.t option;
    (*

    When the invocation request was submitted.

    *)
  7. lastModifiedTime : Timestamp.t option;
    (*

    The invocation's last modified time.

    *)
  8. endTime : Timestamp.t option;
    (*

    When the invocation ended.

    *)
  9. outputDataConfig : AsyncInvokeOutputDataConfig.t option;
    (*

    Output data settings.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ThrottlingException of ThrottlingException.t
  4. | `ValidationException of ValidationException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?invocationArn:??? -> ?modelArn:??? -> ?clientRequestToken:??? -> ?status:??? -> ?failureMessage:??? -> ?submitTime:??? -> ?lastModifiedTime:??? -> ?endTime:??? -> ?outputDataConfig:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of InvocationArn.t | `Structure of (string * [> `Structure of (string * [> `String of S3Uri.t ]) list ]) list | `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