可随时设置的对象元数据。
签名:
export interface SettableMetadata
属性
属性 | 类型 | 说明 |
---|---|---|
cacheControl | 字符串 |未定义 | 作为“Cache-Control”标题。 |
contentDisposition | 字符串 |未定义 | 作为“Content-Disposition”标题。 |
contentEncoding | 字符串 |未定义 | 作为“Content-Encoding”标题。 |
contentLanguage | 字符串 |未定义 | 作为“Content-Language”标题。 |
contentType | 字符串 |未定义 | 作为“Content-Type”标题。 |
customMetadata | { [键: 字符串]: 字符串;} |未定义 | 其他用户定义的自定义元数据。 |
SettableMetadata.cacheControl
作为“Cache-Control”标题。
签名:
cacheControl?: string | undefined;
SettableMetadata.contentDisposition
作为“Content-Disposition”标题。
签名:
contentDisposition?: string | undefined;
SettableMetadata.contentEncoding
作为“Content-Encoding”标题。
签名:
contentEncoding?: string | undefined;
SettableMetadata.contentLanguage
作为“Content-Language”标题。
签名:
contentLanguage?: string | undefined;
SettableMetadata.contentType
作为“Content-Type”标题。
签名:
contentType?: string | undefined;
SettableMetadata.customMetadata
其他用户定义的自定义元数据。
签名:
customMetadata?: {
[key: string]: string;
} | undefined;