[][src]Struct rusoto_s3::CreateBucketRequest

pub struct CreateBucketRequest {
    pub acl: Option<String>,
    pub bucket: String,
    pub create_bucket_configuration: Option<CreateBucketConfiguration>,
    pub grant_full_control: Option<String>,
    pub grant_read: Option<String>,
    pub grant_read_acp: Option<String>,
    pub grant_write: Option<String>,
    pub grant_write_acp: Option<String>,
}

Fields

The canned ACL to apply to the bucket.

Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.

Allows grantee to list the objects in the bucket.

Allows grantee to read the bucket ACL.

Allows grantee to create, overwrite, and delete any object in the bucket.

Allows grantee to write the ACL for the applicable bucket.

Trait Implementations

impl Clone for CreateBucketRequest
[src]

Performs copy-assignment from source. Read more

impl Default for CreateBucketRequest
[src]

impl PartialEq<CreateBucketRequest> for CreateBucketRequest
[src]

impl Debug for CreateBucketRequest
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T