Struct aws_sdk_s3::output::delete_bucket_encryption_output::Builder
source · pub struct Builder {}
Expand description
A builder for DeleteBucketEncryptionOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn build(self) -> DeleteBucketEncryptionOutput
pub fn build(self) -> DeleteBucketEncryptionOutput
Consumes the builder and constructs a DeleteBucketEncryptionOutput
.
Examples found in repository?
src/operation_deser.rs (line 474)
464 465 466 467 468 469 470 471 472 473 474 475 476
pub fn parse_delete_bucket_encryption_response(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<
crate::output::DeleteBucketEncryptionOutput,
crate::error::DeleteBucketEncryptionError,
> {
Ok({
#[allow(unused_mut)]
let mut output = crate::output::delete_bucket_encryption_output::Builder::default();
let _ = response;
output.build()
})
}