com.amazonaws.services.s3.model.SetBucketCrossOriginConfigurationRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-s3 Show documentation
/*
* Copyright 2010-2024 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.s3.model;
import java.io.Serializable;
import com.amazonaws.AmazonWebServiceRequest;
/**
* Contains options for setting the cross origin configuration for a bucket.
*
* @see SetBucketCrossOriginConfigurationRequest#SetBucketCrossOriginConfigurationRequest(String, BucketCrossOriginConfiguration)
*/
public class SetBucketCrossOriginConfigurationRequest extends AmazonWebServiceRequest implements Serializable, ExpectedBucketOwnerRequest {
/**
* The bucket whose cross origin configuration is being set.
*
*
* When using this API with an access point, you must direct requests
* to the access point hostname. The access point hostname takes the form
* AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com.
*
*
* When using this operation using an access point through the Amazon Web Services SDKs, you provide
* the access point ARN in place of the bucket name. For more information about access point
* ARNs, see
* Using access points in the Amazon Simple Storage Service Developer Guide.
*
*/
private String bucketName;
/**
* The new cross origin configuration for the specified bucket.
*/
private BucketCrossOriginConfiguration crossOriginConfiguration;
private String expectedBucketOwner;
/**
* Constructs a new {@link SetBucketCrossOriginConfigurationRequest}
* to set the bucket cross origin configuration of
* the specified bucket.
*
*
* When using this API with an access point, you must direct requests
* to the access point hostname. The access point hostname takes the form
* AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com.
*
*
* When using this operation using an access point through the Amazon Web Services SDKs, you provide
* the access point ARN in place of the bucket name. For more information about access point
* ARNs, see
* Using access points in the Amazon Simple Storage Service Developer Guide.
*
*
* @param bucketName
* The name of the bucket, or access point ARN, for which to set the cross origin
* configuration.
* @param crossOriginConfiguration
* The new cross origin configuration for this bucket, which
* completely replaces any existing configuration.
*/
public SetBucketCrossOriginConfigurationRequest(
String bucketName, BucketCrossOriginConfiguration crossOriginConfiguration) {
this.bucketName = bucketName;
this.crossOriginConfiguration = crossOriginConfiguration;
}
public String getExpectedBucketOwner() {
return expectedBucketOwner;
}
public SetBucketCrossOriginConfigurationRequest withExpectedBucketOwner(String expectedBucketOwner) {
this.expectedBucketOwner = expectedBucketOwner;
return this;
}
public void setExpectedBucketOwner(String expectedBucketOwner) {
withExpectedBucketOwner(expectedBucketOwner);
}
/**
* Gets the name of the bucket whose cross origin configuration is being
* set.
*
* @return The name of the bucket whose cross origin configuration is being
* set.
*
* @see SetBucketCrossOriginConfigurationRequest#setBucketName(String)
*/
public String getBucketName() {
return bucketName;
}
/**
* Sets the name of the bucket whose cross origin configuration is being set.
*
* @param bucketName
* The name of the bucket, or access point ARN, whose cross origin configuration is being
* set.
*
* @see SetBucketCrossOriginConfigurationRequest#getBucketName()
*/
public void setBucketName(String bucketName) {
this.bucketName = bucketName;
}
/**
* Sets the name of the bucket whose cross origin configuration is being set,
* and returns this object so that additional method calls may be chained
* together.
*
* @param bucketName
* The name of the bucket, or access point ARN, whose cross origin configuration is being
* set.
*
* @return This {@link SetBucketCrossOriginConfigurationRequest} object so that
* additional method calls may be chained together.
*
* @see SetBucketCrossOriginConfigurationRequest#setBucketName(String)
*/
public SetBucketCrossOriginConfigurationRequest withBucketName(String bucketName) {
setBucketName(bucketName);
return this;
}
/**
* Gets the new cross origin configuration for the specified bucket.
*
* @return The new cross origin configuration for the specified bucket.
*
* @see SetBucketCrossOriginConfigurationRequest#setCrossOriginConfiguration(BucketCrossOriginConfiguration)
* @see SetBucketCrossOriginConfigurationRequest#withCrossOriginConfiguration(BucketCrossOriginConfiguration)
*/
public BucketCrossOriginConfiguration getCrossOriginConfiguration() {
return crossOriginConfiguration;
}
/**
* Sets the new cross origin configuration for the specified bucket.
*
* @param crossOriginConfiguration
* The new cross origin configuration for the specified bucket.
*
* @see SetBucketCrossOriginConfigurationRequest#getCrossOriginConfiguration()
* @see SetBucketCrossOriginConfigurationRequest#withCrossOriginConfiguration(BucketCrossOriginConfiguration)
*/
public void setCrossOriginConfiguration(
BucketCrossOriginConfiguration crossOriginConfiguration) {
this.crossOriginConfiguration = crossOriginConfiguration;
}
/**
* Sets the new cross origin configuration for the specified bucket and
* returns this object, enabling additional method calls to be chained
* together.
*
* @param crossOriginConfiguration
* The new cross origin configuration for the specified bucket.
*
* @return This {@link SetBucketCrossOriginConfigurationRequest} object, enabling that
* additional method calls may be chained together.
*
* @see SetBucketCrossOriginConfigurationRequest#getCrossOriginConfiguration()
*/
public SetBucketCrossOriginConfigurationRequest withCrossOriginConfiguration(
BucketCrossOriginConfiguration crossOriginConfiguration) {
setCrossOriginConfiguration(crossOriginConfiguration);
return this;
}
}