
com.aliyun.oss.model.DeleteAccessPointPolicyRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-sdk-oss Show documentation
Show all versions of aliyun-sdk-oss Show documentation
The Aliyun OSS SDK for Java used for accessing Aliyun Object Storage Service
package com.aliyun.oss.model;
public class DeleteAccessPointPolicyRequest extends GenericRequest {
private String accessPointName;
public DeleteAccessPointPolicyRequest() {
}
public DeleteAccessPointPolicyRequest(String bucketName) {
super(bucketName);
}
public String getAccessPointName() {
return accessPointName;
}
public void setAccessPointName(String accessPointName) {
this.accessPointName = accessPointName;
}
public DeleteAccessPointPolicyRequest withAccessPointName(String accessPointName) {
this.accessPointName = accessPointName;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy