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, java21
.
The following list includes deprecated runtimes. For more information, see Runtime deprecation policy.
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, java21
.
The following list includes deprecated runtimes. For more information, see Runtime deprecation policy.
sourcepub fn get_compatible_runtime(&self) -> &Option<Runtime>
pub fn get_compatible_runtime(&self) -> &Option<Runtime>
A runtime identifier. For example, java21
.
The following list includes deprecated runtimes. For more information, see Runtime deprecation policy.
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.
This field is required.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 get_layer_name(&self) -> &Option<String>
pub fn get_layer_name(&self) -> &Option<String>
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 get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &Option<String>
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 get_max_items(&self) -> &Option<i32>
pub fn get_max_items(&self) -> &Option<i32>
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 get_compatible_architecture(&self) -> &Option<Architecture>
pub fn get_compatible_architecture(&self) -> &Option<Architecture>
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
.
source§impl ListLayerVersionsInputBuilder
impl ListLayerVersionsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListLayerVersionsOutput, SdkError<ListLayerVersionsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListLayerVersionsOutput, SdkError<ListLayerVersionsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListLayerVersionsInputBuilder
impl Clone for ListLayerVersionsInputBuilder
source§fn clone(&self) -> ListLayerVersionsInputBuilder
fn clone(&self) -> ListLayerVersionsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListLayerVersionsInputBuilder
impl Default for ListLayerVersionsInputBuilder
source§fn default() -> ListLayerVersionsInputBuilder
fn default() -> ListLayerVersionsInputBuilder
source§impl PartialEq for ListLayerVersionsInputBuilder
impl PartialEq for ListLayerVersionsInputBuilder
source§fn eq(&self, other: &ListLayerVersionsInputBuilder) -> bool
fn eq(&self, other: &ListLayerVersionsInputBuilder) -> bool
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
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>
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>
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