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

com.aliyun.ens20171110.models.DeleteBucketLifecycleRequest Maven / Gradle / Ivy

There is a newer version: 7.4.0
Show newest version
// 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