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

com.eworkcloud.oss.OssProperties Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
package com.eworkcloud.oss;

import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
public class OssProperties {
    /**
     * 访问域名
     */
    private String endpoint;
    /**
     * 访问钥匙
     */
    private String accessKey;
    /**
     * 安全密钥
     */
    private String secretKey;
    /**
     * 全局资源描述符
     */
    private String roleArn;
    /**
     * 角色会话名称
     */
    private String roleSessionName;
    /**
     * 获取过期时间(秒),范围:900~3600,默认值:3600
     */
    private Long durationSeconds;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy