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

com.amazonaws.services.s3control.model.PutBucketPolicyRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS S3 Control module holds the client classes that are used for communicating with AWS S3 Control Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.s3control.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;

/**
 * 
 * @see AWS API
 *      Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class PutBucketPolicyRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The Amazon Web Services account ID of the Outposts bucket. *

*/ private String accountId; /** *

* Specifies the bucket. *

*

* For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the * x-amz-outpost-id as well. *

*

* For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN * of the bucket accessed in the format * arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name> * . For example, to access the bucket reports through outpost my-outpost owned by account * 123456789012 in Region us-west-2, use the URL encoding of * arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL * encoded. *

*/ private String bucket; /** *

* Set this parameter to true to confirm that you want to remove your permissions to change this bucket policy in * the future. *

* *

* This is not supported by Amazon S3 on Outposts buckets. *

*
*/ private Boolean confirmRemoveSelfBucketAccess; /** *

* The bucket policy as a JSON document. *

*/ private String policy; /** *

* The Amazon Web Services account ID of the Outposts bucket. *

* * @param accountId * The Amazon Web Services account ID of the Outposts bucket. */ public void setAccountId(String accountId) { this.accountId = accountId; } /** *

* The Amazon Web Services account ID of the Outposts bucket. *

* * @return The Amazon Web Services account ID of the Outposts bucket. */ public String getAccountId() { return this.accountId; } /** *

* The Amazon Web Services account ID of the Outposts bucket. *

* * @param accountId * The Amazon Web Services account ID of the Outposts bucket. * @return Returns a reference to this object so that method calls can be chained together. */ public PutBucketPolicyRequest withAccountId(String accountId) { setAccountId(accountId); return this; } /** *

* Specifies the bucket. *

*

* For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the * x-amz-outpost-id as well. *

*

* For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN * of the bucket accessed in the format * arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name> * . For example, to access the bucket reports through outpost my-outpost owned by account * 123456789012 in Region us-west-2, use the URL encoding of * arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL * encoded. *

* * @param bucket * Specifies the bucket.

*

* For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the * x-amz-outpost-id as well. *

*

* For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify * the ARN of the bucket accessed in the format * arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name> * . For example, to access the bucket reports through outpost my-outpost owned by * account 123456789012 in Region us-west-2, use the URL encoding of * arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must * be URL encoded. */ public void setBucket(String bucket) { this.bucket = bucket; } /** *

* Specifies the bucket. *

*

* For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the * x-amz-outpost-id as well. *

*

* For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN * of the bucket accessed in the format * arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name> * . For example, to access the bucket reports through outpost my-outpost owned by account * 123456789012 in Region us-west-2, use the URL encoding of * arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL * encoded. *

* * @return Specifies the bucket.

*

* For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the * x-amz-outpost-id as well. *

*

* For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify * the ARN of the bucket accessed in the format * arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name> * . For example, to access the bucket reports through outpost my-outpost owned by * account 123456789012 in Region us-west-2, use the URL encoding of * arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must * be URL encoded. */ public String getBucket() { return this.bucket; } /** *

* Specifies the bucket. *

*

* For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the * x-amz-outpost-id as well. *

*

* For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN * of the bucket accessed in the format * arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name> * . For example, to access the bucket reports through outpost my-outpost owned by account * 123456789012 in Region us-west-2, use the URL encoding of * arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL * encoded. *

* * @param bucket * Specifies the bucket.

*

* For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the * x-amz-outpost-id as well. *

*

* For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify * the ARN of the bucket accessed in the format * arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name> * . For example, to access the bucket reports through outpost my-outpost owned by * account 123456789012 in Region us-west-2, use the URL encoding of * arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must * be URL encoded. * @return Returns a reference to this object so that method calls can be chained together. */ public PutBucketPolicyRequest withBucket(String bucket) { setBucket(bucket); return this; } /** *

* Set this parameter to true to confirm that you want to remove your permissions to change this bucket policy in * the future. *

* *

* This is not supported by Amazon S3 on Outposts buckets. *

*
* * @param confirmRemoveSelfBucketAccess * Set this parameter to true to confirm that you want to remove your permissions to change this bucket * policy in the future.

*

* This is not supported by Amazon S3 on Outposts buckets. *

*/ public void setConfirmRemoveSelfBucketAccess(Boolean confirmRemoveSelfBucketAccess) { this.confirmRemoveSelfBucketAccess = confirmRemoveSelfBucketAccess; } /** *

* Set this parameter to true to confirm that you want to remove your permissions to change this bucket policy in * the future. *

* *

* This is not supported by Amazon S3 on Outposts buckets. *

*
* * @return Set this parameter to true to confirm that you want to remove your permissions to change this bucket * policy in the future.

*

* This is not supported by Amazon S3 on Outposts buckets. *

*/ public Boolean getConfirmRemoveSelfBucketAccess() { return this.confirmRemoveSelfBucketAccess; } /** *

* Set this parameter to true to confirm that you want to remove your permissions to change this bucket policy in * the future. *

* *

* This is not supported by Amazon S3 on Outposts buckets. *

*
* * @param confirmRemoveSelfBucketAccess * Set this parameter to true to confirm that you want to remove your permissions to change this bucket * policy in the future.

*

* This is not supported by Amazon S3 on Outposts buckets. *

* @return Returns a reference to this object so that method calls can be chained together. */ public PutBucketPolicyRequest withConfirmRemoveSelfBucketAccess(Boolean confirmRemoveSelfBucketAccess) { setConfirmRemoveSelfBucketAccess(confirmRemoveSelfBucketAccess); return this; } /** *

* Set this parameter to true to confirm that you want to remove your permissions to change this bucket policy in * the future. *

* *

* This is not supported by Amazon S3 on Outposts buckets. *

*
* * @return Set this parameter to true to confirm that you want to remove your permissions to change this bucket * policy in the future.

*

* This is not supported by Amazon S3 on Outposts buckets. *

*/ public Boolean isConfirmRemoveSelfBucketAccess() { return this.confirmRemoveSelfBucketAccess; } /** *

* The bucket policy as a JSON document. *

* * @param policy * The bucket policy as a JSON document. */ public void setPolicy(String policy) { this.policy = policy; } /** *

* The bucket policy as a JSON document. *

* * @return The bucket policy as a JSON document. */ public String getPolicy() { return this.policy; } /** *

* The bucket policy as a JSON document. *

* * @param policy * The bucket policy as a JSON document. * @return Returns a reference to this object so that method calls can be chained together. */ public PutBucketPolicyRequest withPolicy(String policy) { setPolicy(policy); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getAccountId() != null) sb.append("AccountId: ").append(getAccountId()).append(","); if (getBucket() != null) sb.append("Bucket: ").append(getBucket()).append(","); if (getConfirmRemoveSelfBucketAccess() != null) sb.append("ConfirmRemoveSelfBucketAccess: ").append(getConfirmRemoveSelfBucketAccess()).append(","); if (getPolicy() != null) sb.append("Policy: ").append(getPolicy()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof PutBucketPolicyRequest == false) return false; PutBucketPolicyRequest other = (PutBucketPolicyRequest) obj; if (other.getAccountId() == null ^ this.getAccountId() == null) return false; if (other.getAccountId() != null && other.getAccountId().equals(this.getAccountId()) == false) return false; if (other.getBucket() == null ^ this.getBucket() == null) return false; if (other.getBucket() != null && other.getBucket().equals(this.getBucket()) == false) return false; if (other.getConfirmRemoveSelfBucketAccess() == null ^ this.getConfirmRemoveSelfBucketAccess() == null) return false; if (other.getConfirmRemoveSelfBucketAccess() != null && other.getConfirmRemoveSelfBucketAccess().equals(this.getConfirmRemoveSelfBucketAccess()) == false) return false; if (other.getPolicy() == null ^ this.getPolicy() == null) return false; if (other.getPolicy() != null && other.getPolicy().equals(this.getPolicy()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAccountId() == null) ? 0 : getAccountId().hashCode()); hashCode = prime * hashCode + ((getBucket() == null) ? 0 : getBucket().hashCode()); hashCode = prime * hashCode + ((getConfirmRemoveSelfBucketAccess() == null) ? 0 : getConfirmRemoveSelfBucketAccess().hashCode()); hashCode = prime * hashCode + ((getPolicy() == null) ? 0 : getPolicy().hashCode()); return hashCode; } @Override public PutBucketPolicyRequest clone() { return (PutBucketPolicyRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy