OBJECT

WritableUrlInfo

Contains information about a signed writable URL retrieved from the getSignedWritableUrl mutation.

link GraphQL Schema definition

1type WritableUrlInfo {
2
3# The storage bucket ID
4bucket: String!
5
6# The storage object key
7key: String!
8
9# Time interval, in seconds, after which this URL is expired and no longer valid.
10expiresInSeconds: Int!
11
12# Absolute time at which this URL expires
13expiresAtDateTime: DateTime!
14
15# The signed URL, which can be uploaded to with an HTTP PUT (note: PUT is
16# required. POST will generate an error).
17url: String!
18
19# A signed URL that can be used with HTTP GET to retrieve the
20# new resource.
21getUrl: String!
22
23# The unsigned, base URL to the object, which can be safely persisted
24# and re-signed later by a client with the necessary storage credentials.
25unsignedUrl: String
26
27}