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

cn.fanzy.breeze.minio.utils.BreezeBucketPolicyEnum Maven / Gradle / Ivy

package cn.fanzy.breeze.minio.utils;

/**
 * 微风桶政策枚举
 *
 * @author fanzaiyang
 * @since 2022-08-22
 */
public enum BreezeBucketPolicyEnum {
    GetBucketLocation("s3:GetBucketLocation"),
    ListBucket("s3:ListBucket"),
    GetObject("s3:GetObject");

    private final String action;

    BreezeBucketPolicyEnum(String action) {
        this.action = action;
    }

    public String getAction() {
        return action;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy