pub struct Builder {}
Expand description
A builder for DeleteFunctionConcurrencyOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn build(self) -> DeleteFunctionConcurrencyOutput
pub fn build(self) -> DeleteFunctionConcurrencyOutput
Consumes the builder and constructs a DeleteFunctionConcurrencyOutput
.
Examples found in repository?
src/operation_deser.rs (line 1745)
1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747
pub fn parse_delete_function_concurrency_response(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<
crate::output::DeleteFunctionConcurrencyOutput,
crate::error::DeleteFunctionConcurrencyError,
> {
Ok({
#[allow(unused_mut)]
let mut output = crate::output::delete_function_concurrency_output::Builder::default();
let _ = response;
output.build()
})
}