Struct aws_sdk_s3::output::put_bucket_encryption_output::Builder
source · pub struct Builder {}
Expand description
A builder for PutBucketEncryptionOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn build(self) -> PutBucketEncryptionOutput
pub fn build(self) -> PutBucketEncryptionOutput
Consumes the builder and constructs a PutBucketEncryptionOutput
.
Examples found in repository?
src/operation_deser.rs (line 3108)
3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110
pub fn parse_put_bucket_encryption_response(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<
crate::output::PutBucketEncryptionOutput,
crate::error::PutBucketEncryptionError,
> {
Ok({
#[allow(unused_mut)]
let mut output = crate::output::put_bucket_encryption_output::Builder::default();
let _ = response;
output.build()
})
}