pub struct Builder {}
Expand description
A builder for DeleteBucketIntelligentTieringConfigurationOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn build(self) -> DeleteBucketIntelligentTieringConfigurationOutput
pub fn build(self) -> DeleteBucketIntelligentTieringConfigurationOutput
Consumes the builder and constructs a DeleteBucketIntelligentTieringConfigurationOutput
.
Examples found in repository?
src/operation_deser.rs (line 503)
491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
pub fn parse_delete_bucket_intelligent_tiering_configuration_response(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<
crate::output::DeleteBucketIntelligentTieringConfigurationOutput,
crate::error::DeleteBucketIntelligentTieringConfigurationError,
> {
Ok({
#[allow(unused_mut)]
let mut output =
crate::output::delete_bucket_intelligent_tiering_configuration_output::Builder::default(
);
let _ = response;
output.build()
})
}