INPUT_OBJECT

GetStorageSignedUrlInput

link GraphQL Schema definition

1input GetStorageSignedUrlInput {
6
2# URL of the object to be signed. If it is already signed and the bucket belongs
3# to the source the signature will be refreshed.
4# If the bucket does not belong to the source, error will be returned.
5url: String
9
7# The storage object key
8key: String
12
10# The type of access requested
11access: SourceAccessType
18
13# Time interval, in seconds, after which this URL is expired and no longer valid.
14# This is optional and defaults to the source default.
15# Note: this value is capped at the source default, so any value higher than the
16# source default will be capped at the source default.
17expiresInSeconds: Int
19}