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

com.ibm.cloud.objectstorage.services.s3.model.SetBucketCrossOriginConfigurationRequest Maven / Gradle / Ivy

Go to download

The IBM COS Java SDK for Amazon S3 module holds the client classes that are used for communicating with IBM Cloud Object Storage Service

There is a newer version: 2.13.4
Show newest version
/*
 * Copyright 2010-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.ibm.cloud.objectstorage.services.s3.model;
import java.io.Serializable;

import com.ibm.cloud.objectstorage.AmazonWebServiceRequest;

/**
 * Contains options for setting the cross origin configuration for a bucket.
 * 
 * @see SetBucketCrossOriginConfigurationRequest#SetBucketCrossOriginConfigurationRequest(String, BucketCrossOriginConfiguration)
 */
public class SetBucketCrossOriginConfigurationRequest extends AmazonWebServiceRequest implements Serializable
//IBM unsupported
//, 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; //IBM unsupported //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; } //IBM unsupported // 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy