Module Values.AsyncInvokeSummarySource

A summary of an asynchronous invocation.

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

    The invocation's ARN.

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

    The invoked model's 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 was submitted.

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

    When the invocation was last modified.

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

    When the invocation ended.

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

    The invocation's output data settings.

    *)
}
Sourceval make : ?invocationArn:??? -> ?modelArn:??? -> ?clientRequestToken:??? -> ?status:??? -> ?failureMessage:??? -> ?submitTime:??? -> ?lastModifiedTime:??? -> ?endTime:??? -> ?outputDataConfig:??? -> unit -> 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