Struct aws_sdk_s3::output::put_bucket_versioning_output::Builder
source · pub struct Builder {}
Expand description
A builder for PutBucketVersioningOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn build(self) -> PutBucketVersioningOutput
pub fn build(self) -> PutBucketVersioningOutput
Consumes the builder and constructs a PutBucketVersioningOutput
.
Examples found in repository?
src/operation_deser.rs (line 3430)
3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432
pub fn parse_put_bucket_versioning_response(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<
crate::output::PutBucketVersioningOutput,
crate::error::PutBucketVersioningError,
> {
Ok({
#[allow(unused_mut)]
let mut output = crate::output::put_bucket_versioning_output::Builder::default();
let _ = response;
output.build()
})
}