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 for ListLayerVersionsInputBuilder
impl PartialEq 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 ==
.impl StructuralPartialEq for ListLayerVersionsInputBuilder
Auto Trait Implementations§
impl Freeze for ListLayerVersionsInputBuilder
impl RefUnwindSafe for ListLayerVersionsInputBuilder
impl Send for ListLayerVersionsInputBuilder
impl Sync for ListLayerVersionsInputBuilder
impl Unpin for ListLayerVersionsInputBuilder
impl UnwindSafe for ListLayerVersionsInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more