Values.GetUploadJobPathResponseSourceThis API retrieves the pre-signed URL and client token for uploading the file associated with the upload job.
type nonrec t = {url : StringTo2048.t option;The pre-signed S3 URL for uploading the CSV file associated with the upload job.
*)clientToken : Text.t option;The plaintext data key used to encrypt the upload file. To persist to the pre-signed url, use the client token and MD5 client token as header. The required headers are as follows: x-amz-server-side-encryption-customer-key: Client Token x-amz-server-side-encryption-customer-key-MD5: MD5 Client Token x-amz-server-side-encryption-customer-algorithm: AES256
*)validUntil : Timestamp.t option;The expiry timestamp for the pre-signed URL, after which the URL will no longer be valid.
*)}type nonrec error = [ | `AccessDeniedException of AccessDeniedException.t| `BadRequestException of BadRequestException.t| `InternalServerException of InternalServerException.t| `ResourceNotFoundException of ResourceNotFoundException.t| `ThrottlingException of ThrottlingException.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `AccessDeniedException of AccessDeniedException.t
| `BadRequestException of BadRequestException.t
| `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ThrottlingException of ThrottlingException.t
| `Unknown_operation_error of string * string option ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `AccessDeniedException of AccessDeniedException.t
| `BadRequestException of BadRequestException.t
| `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ThrottlingException of ThrottlingException.t
| `Unknown_operation_error of string * string option ]val to_value :
t ->
[> `Structure of
(string * [> `String of StringTo2048.t | `Timestamp of Timestamp.t ])
list ]