
com.aliyun.ice20201109.models.DecryptKMSDataKeyRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class DecryptKMSDataKeyRequest extends TeaModel {
@NameInMap("CiphertextBlob")
public String ciphertextBlob;
public static DecryptKMSDataKeyRequest build(java.util.Map map) throws Exception {
DecryptKMSDataKeyRequest self = new DecryptKMSDataKeyRequest();
return TeaModel.build(map, self);
}
public DecryptKMSDataKeyRequest setCiphertextBlob(String ciphertextBlob) {
this.ciphertextBlob = ciphertextBlob;
return this;
}
public String getCiphertextBlob() {
return this.ciphertextBlob;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy