com.amazonaws.services.s3.model
Class DeleteBucketRequest

java.lang.Object
  extended by com.amazonaws.AmazonWebServiceRequest
      extended by com.amazonaws.services.s3.model.DeleteBucketRequest

public class DeleteBucketRequest
extends AmazonWebServiceRequest

Provides options for deleting a specified bucket. Amazon S3 buckets can only be deleted when empty.

Note: When attempting to delete a bucket that does not exist, Amazon S3 returns a success message, not an error message.


Constructor Summary
DeleteBucketRequest(String bucketName)
          Constructs a new DeleteBucketRequest, ready to be executed to delete the specified bucket.
 
Method Summary
 String getBucketName()
          Gets the name of the Amazon S3 bucket to delete.
 void setBucketName(String bucketName)
          Sets the name of the Amazon S3 bucket to delete.
 
Methods inherited from class com.amazonaws.AmazonWebServiceRequest
copyPrivateRequestParameters, getDelegationToken, getRequestClientOptions, getRequestCredentials, setDelegationToken, setRequestCredentials
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DeleteBucketRequest

public DeleteBucketRequest(String bucketName)
Constructs a new DeleteBucketRequest, ready to be executed to delete the specified bucket.

Parameters:
bucketName - The name of the Amazon S3 bucket to delete.
Method Detail

setBucketName

public void setBucketName(String bucketName)
Sets the name of the Amazon S3 bucket to delete.

Parameters:
bucketName - The name of the Amazon S3 bucket to delete.
See Also:
getBucketName()

getBucketName

public String getBucketName()
Gets the name of the Amazon S3 bucket to delete.

Returns:
The name of the Amazon S3 bucket to delete.
See Also:
setBucketName(String)


Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.