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

com.qcloud.cos.model.BucketEncryptionConfiguration Maven / Gradle / Ivy

There is a newer version: 5.6.238.2
Show newest version
package com.qcloud.cos.model;

public class BucketEncryptionConfiguration {
    private String sseAlgorithm = "";

    private String kmsMasterKeyID = "";

    private String kMSAlgorithm = "";

    private String bucketEnabled = "";

    public String getKMSAlgorithm() {
        return kMSAlgorithm;
    }

    public void setKMSAlgorithm(String kMSAlgorithm) {
        this.kMSAlgorithm = kMSAlgorithm;
    }

    public String getKmsMasterKeyID() {
        return kmsMasterKeyID;
    }

    public void setKmsMasterKeyID(String kmsMasterKeyID) {
        this.kmsMasterKeyID = kmsMasterKeyID;
    }

    public String getSseAlgorithm() {
        return sseAlgorithm;
    }

    public void setSseAlgorithm(String sseAlgorithm) {
        this.sseAlgorithm = sseAlgorithm;
    }

    public String getBucketEnabled() {
        return bucketEnabled;
    }

    public void setBucketEnabled(String bucketEnabled) {
        this.bucketEnabled = bucketEnabled;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy