com.aliyun.ens20171110.models.DeleteBucketLifecycleRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ens20171110 Show documentation
Show all versions of ens20171110 Show documentation
Alibaba Cloud edge node service (20171110) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;
import com.aliyun.tea.*;
public class DeleteBucketLifecycleRequest extends TeaModel {
/**
* The name of the bucket.
* This parameter is required.
*
* example:
* test
*/
@NameInMap("BucketName")
public String bucketName;
/**
* The ID of the rule. If this parameter is not specified, all rules are removed.
*
* example:
* 1
*/
@NameInMap("RuleId")
public String ruleId;
public static DeleteBucketLifecycleRequest build(java.util.Map map) throws Exception {
DeleteBucketLifecycleRequest self = new DeleteBucketLifecycleRequest();
return TeaModel.build(map, self);
}
public DeleteBucketLifecycleRequest setBucketName(String bucketName) {
this.bucketName = bucketName;
return this;
}
public String getBucketName() {
return this.bucketName;
}
public DeleteBucketLifecycleRequest setRuleId(String ruleId) {
this.ruleId = ruleId;
return this;
}
public String getRuleId() {
return this.ruleId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy