[][src]Enum rusoto_s3::CreateBucketError

pub enum CreateBucketError {
    BucketAlreadyExists(String),
    BucketAlreadyOwnedByYou(String),
}

Errors returned by CreateBucket

Variants

BucketAlreadyExists(String)

The requested bucket name is not available. The bucket namespace is shared by all users of the system. Please select a different name and try again.

BucketAlreadyOwnedByYou(String)

The bucket you tried to create already exists, and you own it. Amazon S3 returns this error in all AWS Regions except in the North Virginia Region. For legacy compatibility, if you re-create an existing bucket that you already own in the North Virginia Region, Amazon S3 returns 200 OK and resets the bucket access control lists (ACLs).

Implementations

impl CreateBucketError[src]

Trait Implementations

impl Debug for CreateBucketError[src]

impl Display for CreateBucketError[src]

impl Error for CreateBucketError[src]

impl PartialEq<CreateBucketError> for CreateBucketError[src]

impl StructuralPartialEq for CreateBucketError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.