Struct aws_sdk_lambda::input::list_layers_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ListLayersInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn compatible_runtime(self, input: Runtime) -> Self
pub fn compatible_runtime(self, input: Runtime) -> Self
A runtime identifier. For example, go1.x
.
sourcepub fn set_compatible_runtime(self, input: Option<Runtime>) -> Self
pub fn set_compatible_runtime(self, input: Option<Runtime>) -> Self
A runtime identifier. For example, go1.x
.
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
A pagination token returned by a previous call.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
A pagination token returned by a previous call.
sourcepub fn set_max_items(self, input: Option<i32>) -> Self
pub fn set_max_items(self, input: Option<i32>) -> Self
The maximum number of layers to return.
sourcepub fn compatible_architecture(self, input: Architecture) -> Self
pub fn compatible_architecture(self, input: Architecture) -> Self
The compatible instruction set architecture.
sourcepub fn set_compatible_architecture(self, input: Option<Architecture>) -> Self
pub fn set_compatible_architecture(self, input: Option<Architecture>) -> Self
The compatible instruction set architecture.
sourcepub fn build(self) -> Result<ListLayersInput, BuildError>
pub fn build(self) -> Result<ListLayersInput, BuildError>
Consumes the builder and constructs a ListLayersInput
.