Request to confirm S3 upload completion and create bucket object.
| Name | Type | Description | Notes |
|---|---|---|---|
| etag | str | S3 ETag returned from the upload. OPTIONAL but RECOMMENDED. After uploading to S3, the response includes an ETag header. Providing this ensures the file wasn't corrupted during upload. If provided and doesn't match S3's ETag, confirmation will fail with error. Format: Usually an MD5 hash, may be enclosed in quotes. | [optional] |
| file_size_bytes | int | Actual file size uploaded, in bytes. OPTIONAL but RECOMMENDED. If provided, will be validated against the actual S3 object size. Mismatch indicates upload corruption or network issues. If not provided, size validation is skipped. | [optional] |
from mixpeek.models.confirm_upload_request import ConfirmUploadRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ConfirmUploadRequest from a JSON string
confirm_upload_request_instance = ConfirmUploadRequest.from_json(json)
# print the JSON string representation of the object
print(ConfirmUploadRequest.to_json())
# convert the object into a dict
confirm_upload_request_dict = confirm_upload_request_instance.to_dict()
# create an instance of ConfirmUploadRequest from a dict
confirm_upload_request_from_dict = ConfirmUploadRequest.from_dict(confirm_upload_request_dict)