INPUT_OBJECT

UploadedPartInput

Basic information associated with an uploaded chunk as part of an AWS S3 multipart upload session

link GraphQL Schema definition

1input UploadedPartInput {
4
2# The part number of the chunk being uploaded
3PartNumber: Int!
9
5# The tag assigned to the uploaded part. The ETag for a part can be found in the
6# headers
7# of the response to uploading the part to its respective pre-signed url.
8ETag: String!
10}