com.volcengine.model.live.v20230101.ListVhostSnapshotPresetV2ResResultPresetListItemSlicePresetV2SnapshotPresetConfigJpegParamTOSParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.live.v20230101;
import com.alibaba.fastjson.JSON;
/**
* ListVhostSnapshotPresetV2ResResultPresetListItemSlicePresetV2SnapshotPresetConfigJpegParamTOSParam
*/
@lombok.Data
public final class ListVhostSnapshotPresetV2ResResultPresetListItemSlicePresetV2SnapshotPresetConfigJpegParamTOSParam {
/**
* 截图是否使用 TOS 存储,取值及含义如下所示。
*
* - `false`:不使用;
*
* - `true`:使用。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Enable")
private Boolean enable;
/**
* TOS 存储对应的 Bucket。
*
* 例如,存储路径为 live-test-tos-example/live/liveapp 时,Bucket 取值为 `live-test-tos-example`。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Bucket")
private String bucket;
/**
* Bucket 目录。
*
* 例如,存储路径为 live-test-tos-example/live/liveapp 时,StorageDir 取值为 `live/liveapp`。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "StorageDir")
private String storageDir;
/**
* 存储方式为实时截图时的存储规则,支持以 {Domain}/{App}/{Stream}/{UnixTimestamp} 样式设置存储规则,支持输入字母、数字、-、!、\_、.、\* 及占位符。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ExactObject")
private String exactObject;
/**
* 存储方式为覆盖截图时的存储规则,支持以 {Domain}/{App}/{Stream} 样式设置存储规则,支持输入字母、数字、-、!、\_、.、\* 及占位符。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "OverwriteObject")
private String overwriteObject;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy