OBJECT

SignedWritableAssetUrlInfo

Signed PUT URL for overwriting an existing asset in place. See the getSignedWritableAssetUrl query.

link GraphQL Schema definition

1type SignedWritableAssetUrlInfo {
2
3# Signed S3 PUT URL that overwrites the asset object.
4url: String!
5
6# Physical bucket the object will be written to.
7bucket: String!
8
9# Object key within the bucket.
10key: String!
11
12# Content type baked into the signature; the PUT must send this `Content-Type`.
13contentType: 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.
17serverSideEncryption: String
18
19# Seconds until the signed URL expires.
20expiresInSeconds: Int!
21
22}