Module Values.GetUploadStatusResponseSource

Gets the status of the specified upload.

Sourcetype nonrec t = {
  1. uploadId : UploadId.t option;
    (*

    The ID of the upload.

    *)
  2. uploadStatus : UploadStatus.t option;
    (*

    The status of the upload. The initial status is IN_PROGRESS. The response show all validation failures if the upload fails.

    *)
  3. namespaceArn : Arn.t option;
    (*

    The ARN of the upload.

    *)
  4. namespaceName : NamespaceName.t option;
    (*

    The name of the upload's namespace.

    *)
  5. namespaceVersion : Version.t option;
    (*

    The version of the user's namespace. Defaults to the latest version of the user's namespace.

    *)
  6. failureReason : StringList.t option;
    (*

    The reason for an upload failure.

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

    The date at which the upload was created.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalFailureException of InternalFailureException.t
  2. | `InvalidRequestException of InvalidRequestException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?uploadId:??? -> ?uploadStatus:??? -> ?namespaceArn:??? -> ?namespaceName:??? -> ?namespaceVersion:??? -> ?failureReason:??? -> ?createdDate:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalFailureException of InternalFailureException.t | `InvalidRequestException of InvalidRequestException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalFailureException of InternalFailureException.t | `InvalidRequestException of InvalidRequestException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of 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 | `List of [> `String of String_.t ] list | `Long of Version.t | `String of UploadId.t | `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