pub struct Builder {}
Expand description
A builder for DeleteFunctionEventInvokeConfigOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn build(self) -> DeleteFunctionEventInvokeConfigOutput
pub fn build(self) -> DeleteFunctionEventInvokeConfigOutput
Consumes the builder and constructs a DeleteFunctionEventInvokeConfigOutput
.
Examples found in repository?
src/operation_deser.rs (line 1855)
1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857
pub fn parse_delete_function_event_invoke_config_response(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<
crate::output::DeleteFunctionEventInvokeConfigOutput,
crate::error::DeleteFunctionEventInvokeConfigError,
> {
Ok({
#[allow(unused_mut)]
let mut output =
crate::output::delete_function_event_invoke_config_output::Builder::default();
let _ = response;
output.build()
})
}