com.aliyun.ens20171110.models.GetBucketInfoRequest 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 GetBucketInfoRequest extends TeaModel {
/**
* The name of the bucket.
* This parameter is required.
*
* example:
* test
*/
@NameInMap("BucketName")
public String bucketName;
public static GetBucketInfoRequest build(java.util.Map map) throws Exception {
GetBucketInfoRequest self = new GetBucketInfoRequest();
return TeaModel.build(map, self);
}
public GetBucketInfoRequest setBucketName(String bucketName) {
this.bucketName = bucketName;
return this;
}
public String getBucketName() {
return this.bucketName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy