Struct aws_sdk_rust::aws::s3::bucket::CreateBucketRequest [] [src]

pub struct CreateBucketRequest {
    pub grant_full_control: Option<GrantFullControl>,
    pub create_bucket_configuration: Option<CreateBucketConfiguration>,
    pub grant_write_acp: Option<GrantWriteACP>,
    pub bucket: BucketName,
    pub acl: Option<CannedAcl>,
    pub grant_write: Option<GrantWrite>,
    pub grant_read: Option<GrantRead>,
    pub grant_read_acp: Option<GrantReadACP>,
}

Fields

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

Allows grantee to write the ACL for the applicable bucket.

The canned ACL to apply to the bucket.

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

Allows grantee to list the objects in the bucket.

Allows grantee to read the bucket ACL.

Trait Implementations

impl Debug for CreateBucketRequest
[src]

Formats the value using the given formatter.

impl Default for CreateBucketRequest
[src]

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

impl Decodable for CreateBucketRequest
[src]

Deserialize a value using a Decoder.

impl Encodable for CreateBucketRequest
[src]

Serialize a value using an Encoder.