Struct aws_sdk_s3control::input::CreateBucketInput [−][src]
#[non_exhaustive]pub struct CreateBucketInput {
pub acl: Option<BucketCannedAcl>,
pub bucket: Option<String>,
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,
pub outpost_id: Option<String>,
pub create_bucket_configuration: Option<CreateBucketConfiguration>,
}
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.
This is not supported by Amazon S3 on Outposts buckets.
bucket: Option<String>
The name of the bucket.
grant_full_control: Option<String>
Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.
This is not supported by Amazon S3 on Outposts buckets.
grant_read: Option<String>
Allows grantee to list the objects in the bucket.
This is not supported by Amazon S3 on Outposts buckets.
grant_read_acp: Option<String>
Allows grantee to read the bucket ACL.
This is not supported by Amazon S3 on Outposts buckets.
grant_write: Option<String>
Allows grantee to create, overwrite, and delete any object in the bucket.
This is not supported by Amazon S3 on Outposts buckets.
grant_write_acp: Option<String>
Allows grantee to write the ACL for the applicable bucket.
This is not supported by Amazon S3 on Outposts buckets.
object_lock_enabled_for_bucket: bool
Specifies whether you want S3 Object Lock to be enabled for the new bucket.
This is not supported by Amazon S3 on Outposts buckets.
outpost_id: Option<String>
The ID of the Outposts where the bucket is being created.
This is required by Amazon S3 on Outposts buckets.
create_bucket_configuration: Option<CreateBucketConfiguration>
The configuration information for the bucket.
This is not supported by Amazon S3 on Outposts buckets.
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
The canned ACL to apply to the bucket.
This is not supported by Amazon S3 on Outposts buckets.
Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.
This is not supported by Amazon S3 on Outposts buckets.
Allows grantee to list the objects in the bucket.
This is not supported by Amazon S3 on Outposts buckets.
Allows grantee to read the bucket ACL.
This is not supported by Amazon S3 on Outposts buckets.
Allows grantee to create, overwrite, and delete any object in the bucket.
This is not supported by Amazon S3 on Outposts buckets.
Allows grantee to write the ACL for the applicable bucket.
This is not supported by Amazon S3 on Outposts buckets.
Specifies whether you want S3 Object Lock to be enabled for the new bucket.
This is not supported by Amazon S3 on Outposts buckets.
The ID of the Outposts where the bucket is being created.
This is required by Amazon S3 on Outposts buckets.
The configuration information for the bucket.
This is not supported by Amazon S3 on Outposts buckets.
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