OBJECT
SignedWritableAssetUrlInfo
Signed PUT URL for overwriting an existing asset in place.
See the getSignedWritableAssetUrl query.
link GraphQL Schema definition
1 type SignedWritableAssetUrlInfo { 2 3 # Signed S3 PUT URL that overwrites the asset object. 4 : String! 5 6 # Physical bucket the object will be written to. 7 : String! 8 9 # Object key within the bucket. 10 : String! 11 12 # Content type baked into the signature; the PUT must send this `Content-Type`. 13 : String! 14 15 # Server-side encryption baked into the signature, e.g. `AES256`. When non-null 16 # the PUT must send a matching `x-amz-server-side-encryption` header. 17 : String 18 19 # Seconds until the signed URL expires. 20 : Int! 21 22 }