Struct aws_sdk_s3::input::CreateBucketInput [−][src]
#[non_exhaustive]pub struct CreateBucketInput {
pub acl: Option<BucketCannedAcl>,
pub bucket: Option<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>,
pub object_lock_enabled_for_bucket: bool,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.acl: Option<BucketCannedAcl>
The canned ACL to apply to the bucket.
bucket: Option<String>
The name of the bucket to create.
create_bucket_configuration: Option<CreateBucketConfiguration>
The configuration information for the bucket.
grant_full_control: Option<String>
Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.
grant_read: Option<String>
Allows grantee to list the objects in the bucket.
grant_read_acp: Option<String>
Allows grantee to read the bucket ACL.
grant_write: Option<String>
Allows grantee to create new objects in the bucket.
For the bucket and object owners of existing objects, also allows deletions and overwrites of those objects.
grant_write_acp: Option<String>
Allows grantee to write the ACL for the applicable bucket.
object_lock_enabled_for_bucket: bool
Specifies whether you want S3 Object Lock to be enabled for the new bucket.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateBucket, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateBucket, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateBucket
>
Creates a new builder-style object to manufacture CreateBucketInput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateBucketInput
impl Send for CreateBucketInput
impl Sync for CreateBucketInput
impl Unpin for CreateBucketInput
impl UnwindSafe for CreateBucketInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more