Struct aws_sdk_lambda::output::list_functions_output::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ListFunctionsOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn next_marker(self, input: impl Into<String>) -> Self
pub fn next_marker(self, input: impl Into<String>) -> Self
The pagination token that's included if more results are available.
sourcepub fn set_next_marker(self, input: Option<String>) -> Self
pub fn set_next_marker(self, input: Option<String>) -> Self
The pagination token that's included if more results are available.
sourcepub fn functions(self, input: FunctionConfiguration) -> Self
pub fn functions(self, input: FunctionConfiguration) -> Self
Appends an item to functions
.
To override the contents of this collection use set_functions
.
A list of Lambda functions.
sourcepub fn set_functions(self, input: Option<Vec<FunctionConfiguration>>) -> Self
pub fn set_functions(self, input: Option<Vec<FunctionConfiguration>>) -> Self
A list of Lambda functions.
sourcepub fn build(self) -> ListFunctionsOutput
pub fn build(self) -> ListFunctionsOutput
Consumes the builder and constructs a ListFunctionsOutput
.