Struct aws_sdk_s3control::input::CreateBucketInput
source · #[non_exhaustive]pub struct CreateBucketInput { /* private fields */ }Implementations§
source§impl CreateBucketInput
impl CreateBucketInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateBucket, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateBucket, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateBucket>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateBucketInput.
source§impl CreateBucketInput
impl CreateBucketInput
sourcepub fn acl(&self) -> Option<&BucketCannedAcl>
pub fn acl(&self) -> Option<&BucketCannedAcl>
The canned ACL to apply to the bucket.
This is not supported by Amazon S3 on Outposts buckets.
sourcepub fn create_bucket_configuration(&self) -> Option<&CreateBucketConfiguration>
pub fn create_bucket_configuration(&self) -> Option<&CreateBucketConfiguration>
The configuration information for the bucket.
This is not supported by Amazon S3 on Outposts buckets.
sourcepub fn grant_full_control(&self) -> Option<&str>
pub fn grant_full_control(&self) -> Option<&str>
Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.
This is not supported by Amazon S3 on Outposts buckets.
sourcepub fn grant_read(&self) -> Option<&str>
pub fn grant_read(&self) -> Option<&str>
Allows grantee to list the objects in the bucket.
This is not supported by Amazon S3 on Outposts buckets.
sourcepub fn grant_read_acp(&self) -> Option<&str>
pub fn grant_read_acp(&self) -> Option<&str>
Allows grantee to read the bucket ACL.
This is not supported by Amazon S3 on Outposts buckets.
sourcepub fn grant_write(&self) -> Option<&str>
pub fn grant_write(&self) -> Option<&str>
Allows grantee to create, overwrite, and delete any object in the bucket.
This is not supported by Amazon S3 on Outposts buckets.
sourcepub fn grant_write_acp(&self) -> Option<&str>
pub fn grant_write_acp(&self) -> Option<&str>
Allows grantee to write the ACL for the applicable bucket.
This is not supported by Amazon S3 on Outposts buckets.
sourcepub fn object_lock_enabled_for_bucket(&self) -> bool
pub fn object_lock_enabled_for_bucket(&self) -> 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.
sourcepub fn outpost_id(&self) -> Option<&str>
pub fn outpost_id(&self) -> Option<&str>
The ID of the Outposts where the bucket is being created.
This ID is required by Amazon S3 on Outposts buckets.
Trait Implementations§
source§impl Clone for CreateBucketInput
impl Clone for CreateBucketInput
source§fn clone(&self) -> CreateBucketInput
fn clone(&self) -> CreateBucketInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateBucketInput
impl Debug for CreateBucketInput
source§impl PartialEq<CreateBucketInput> for CreateBucketInput
impl PartialEq<CreateBucketInput> for CreateBucketInput
source§fn eq(&self, other: &CreateBucketInput) -> bool
fn eq(&self, other: &CreateBucketInput) -> bool
self and other values to be equal, and is used
by ==.