OBJECT
WritableUrlInfo
Contains information about a signed writable URL retrieved from the getSignedWritableUrl mutation.
link GraphQL Schema definition
1 type WritableUrlInfo { 2 3 # The storage bucket ID 4 String! : 5 6 # The storage object key 7 String! : 8 9 # Time interval, in seconds, after which this URL is expired and no longer valid. 10 Int! : 11 12 # Absolute time at which this URL expires 13 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). 17 String! : 18 19 # A signed URL that can be used with HTTP GET to retrieve the 20 # new resource. 21 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. 25 String : 26 27 }