OBJECT

SignedUrlInfo

link GraphQL Schema definition

1type SignedUrlInfo {
2
3# The storage object key
4key: String!
5
6# Time interval, in seconds, after which this URL is expired and no longer valid.
7expiresInSeconds: Int!
8
9# Absolute time at which this URL expires
10expiresAtDateTime: DateTime!
11
12# The signed URL, which can be uploaded to with an HTTP PUT (note: PUT is
13# required. POST will generate an error).
14url: String!
15
16# The type of access granted
17access: SourceAccessType!
18
19}