All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.healthy.common.qcloud.cos.QcloudStorageConfig Maven / Gradle / Ivy

The newest version!
package com.healthy.common.qcloud.cos;

import lombok.Data;

/**
 * 腾讯云COS存储配置
 *
 * @author healthy
 */
@Data
public class QcloudStorageConfig {

	/**
	 * 存储名称
	 */
	private String name;

	/**
	 * bucket区域
	 */
	private String region = "ap-beijing";

	/**
	 * 存储桶名称
	 */
	private String bucketName;

	/**
	 * 是否加密签名
	 */
	private boolean sign;

	/**
	 * 签名时效: 默认分钟
	 */
	private int expiration = 15;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy