INPUT_OBJECT

CompleteMultipartUploadInput

link GraphQL Schema definition

1input CompleteMultipartUploadInput {
4
2# Identifies the file being uploaded
3key: String!
7
5# The ID associated with the multipart-upload session
6uploadId: String!
10
8# All parts that have been uploaded, each with a part number and etag
9parts: [UploadedPartInput!]!
14
11# The bucket provided when initiating the upload. Leave blank if none was
12# provided.
13bucket: String
15}