Struct aws_sdk_s3::input::delete_bucket_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for DeleteBucketInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn set_bucket(self, input: Option<String>) -> Self
pub fn set_bucket(self, input: Option<String>) -> Self
Specifies the bucket being deleted.
sourcepub fn expected_bucket_owner(self, input: impl Into<String>) -> Self
pub fn expected_bucket_owner(self, input: impl Into<String>) -> Self
The account ID of the expected bucket owner. If the bucket is owned by a different account, the request fails with the HTTP status code 403 Forbidden
(access denied).
sourcepub fn set_expected_bucket_owner(self, input: Option<String>) -> Self
pub fn set_expected_bucket_owner(self, input: Option<String>) -> Self
The account ID of the expected bucket owner. If the bucket is owned by a different account, the request fails with the HTTP status code 403 Forbidden
(access denied).
sourcepub fn build(self) -> Result<DeleteBucketInput, BuildError>
pub fn build(self) -> Result<DeleteBucketInput, BuildError>
Consumes the builder and constructs a DeleteBucketInput
.