可隨時設定的物件中繼資料。
簽名:
export interface SettableMetadata
屬性
屬性 | 類型 | 說明 |
---|---|---|
cacheControl | 字串 |未定義 | 以「快取控制」形式提供標頭。 |
contentDisposition | 字串 |未定義 | 以「內容處理」形式提供標頭。 |
內容編碼 | 字串 |未定義 | 以「內容編碼」為主標頭。 |
contentLanguage | 字串 |未定義 | 以「內容語言」為主標頭。 |
contentType | 字串 |未定義 | 以「內容類型」形式提供標頭。 |
customMetadata | { [key: string]: string;} |未定義 | 其他使用者定義的自訂中繼資料。 |
SettableMetadata.cacheControl
以「快取控制」形式提供標頭。
簽名:
cacheControl?: string | undefined;
SettableMetadata.contentDisposition
以「內容處理」形式提供標頭。
簽名:
contentDisposition?: string | undefined;
SettableMetadata.contentEncoding
以「內容編碼」為主標頭。
簽名:
contentEncoding?: string | undefined;
SettableMetadata.contentLanguage
以「內容語言」為主標頭。
簽名:
contentLanguage?: string | undefined;
SettableMetadata.contentType
以「內容類型」形式提供標頭。
簽名:
contentType?: string | undefined;
SettableMetadata.customMetadata
其他使用者定義的自訂中繼資料。
簽名:
customMetadata?: {
[key: string]: string;
} | undefined;