Struct rusoto_s3::PutBucketAclRequest [] [src]

pub struct PutBucketAclRequest {
    pub acl: Option<BucketCannedACL>,
    pub access_control_policy: Option<AccessControlPolicy>,
    pub bucket: BucketName,
    pub content_md5: Option<ContentMD5>,
    pub grant_full_control: Option<GrantFullControl>,
    pub grant_read: Option<GrantRead>,
    pub grant_read_acp: Option<GrantReadACP>,
    pub grant_write: Option<GrantWrite>,
    pub grant_write_acp: Option<GrantWriteACP>,
}

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 PutBucketAclRequest
[src]

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

impl Clone for PutBucketAclRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PutBucketAclRequest
[src]

Formats the value using the given formatter.