Module Values.InvalidLayerPartExceptionSource

The layer part size isn't valid, or the first byte specified isn't consecutive to the last byte of a previous layer part upload.

Sourcetype nonrec t = {
  1. registryId : RegistryId.t option;
    (*

    The Amazon Web Services account ID that's associated with the layer part.

    *)
  2. repositoryName : RepositoryName.t option;
    (*

    The name of the repository.

    *)
  3. uploadId : UploadId.t option;
    (*

    The upload ID that's associated with the layer part.

    *)
  4. lastValidByteReceived : PartSize.t option;
    (*

    The position of the last byte of the layer part.

    *)
  5. message : ExceptionMessage.t option;
}
Sourceval make : ?registryId:??? -> ?repositoryName:??? -> ?uploadId:??? -> ?lastValidByteReceived:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of PartSize.t | `String of RegistryId.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