OBJECT
SignedUrlInfo
link GraphQL Schema definition
1 type SignedUrlInfo { 2 3 # The storage object key 4 String! : 5 6 # Time interval, in seconds, after which this URL is expired and no longer valid. 7 Int! : 8 9 # Absolute time at which this URL expires 10 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). 14 String! : 15 16 # The type of access granted 17 SourceAccessType! : 18 19 }