OBJECT

MultipartUploadSessionInfo

link GraphQL Schema definition

1type MultipartUploadSessionInfo {
2
3# A list of pre-signed url/part number pairs, each corresponding with a chunk of
4# the file being uploaded
5preSignedUrls: [MultipartPreSignedUrlInfo!]!
6
7# Identifies the file being uploaded
8key: String!
9
10# The ID associated with the multipart-upload session
11uploadId: String!
12
13}