Struct rusoto_s3::CreateBucketRequest[][src]

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 Default for CreateBucketRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for CreateBucketRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateBucketRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateBucketRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations