io.github.wujun728.oss.properties.S3Properties Maven / Gradle / Ivy
The newest version!
package io.github.wujun728.oss.properties;
import lombok.Getter;
import lombok.Setter;
/**
* aws s3协议配置
*
*/
@Setter
@Getter
public class S3Properties {
/**
* 用户名
*/
private String accessKey;
/**
* 密码
*/
private String accessKeySecret;
/**
* 访问端点
*/
private String endpoint;
/**
* bucket名称
*/
private String bucketName;
/**
* 区域
*/
private String region;
/**
* path-style
*/
private Boolean pathStyleAccessEnabled = true;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy