Struct aws_sdk_lambda::operation::list_layer_versions::builders::ListLayerVersionsInputBuilder
source · #[non_exhaustive]pub struct ListLayerVersionsInputBuilder { /* private fields */ }
Expand description
A builder for ListLayerVersionsInput
.
Implementations§
source§impl ListLayerVersionsInputBuilder
impl ListLayerVersionsInputBuilder
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 layer_name(self, input: impl Into<String>) -> Self
pub fn layer_name(self, input: impl Into<String>) -> Self
The name or Amazon Resource Name (ARN) of the layer.
sourcepub fn set_layer_name(self, input: Option<String>) -> Self
pub fn set_layer_name(self, input: Option<String>) -> Self
The name or Amazon Resource Name (ARN) of the layer.
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 versions 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<ListLayerVersionsInput, BuildError>
pub fn build(self) -> Result<ListLayerVersionsInput, BuildError>
Consumes the builder and constructs a ListLayerVersionsInput
.
Trait Implementations§
source§impl Clone for ListLayerVersionsInputBuilder
impl Clone for ListLayerVersionsInputBuilder
source§fn clone(&self) -> ListLayerVersionsInputBuilder
fn clone(&self) -> ListLayerVersionsInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for ListLayerVersionsInputBuilder
impl Default for ListLayerVersionsInputBuilder
source§fn default() -> ListLayerVersionsInputBuilder
fn default() -> ListLayerVersionsInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ListLayerVersionsInputBuilder> for ListLayerVersionsInputBuilder
impl PartialEq<ListLayerVersionsInputBuilder> for ListLayerVersionsInputBuilder
source§fn eq(&self, other: &ListLayerVersionsInputBuilder) -> bool
fn eq(&self, other: &ListLayerVersionsInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.