Struct aws_sdk_lambda::operation::list_layer_versions::builders::ListLayerVersionsFluentBuilder
source · pub struct ListLayerVersionsFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to ListLayerVersions
.
Lists the versions of an Lambda layer. Versions that have been deleted aren't listed. Specify a runtime identifier to list only versions that indicate that they're compatible with that runtime. Specify a compatible architecture to include only layer versions that are compatible with that architecture.
Implementations§
source§impl ListLayerVersionsFluentBuilder
impl ListLayerVersionsFluentBuilder
sourcepub fn as_input(&self) -> &ListLayerVersionsInputBuilder
pub fn as_input(&self) -> &ListLayerVersionsInputBuilder
Access the ListLayerVersions as a reference.
sourcepub async fn send(
self
) -> Result<ListLayerVersionsOutput, SdkError<ListLayerVersionsError, HttpResponse>>
pub async fn send( self ) -> Result<ListLayerVersionsOutput, SdkError<ListLayerVersionsError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<ListLayerVersionsOutput, ListLayerVersionsError, Self>
pub fn customize( self ) -> CustomizableOperation<ListLayerVersionsOutput, ListLayerVersionsError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn into_paginator(self) -> ListLayerVersionsPaginator
pub fn into_paginator(self) -> ListLayerVersionsPaginator
Create a paginator for this request
Paginators are used by calling send().await
which returns a PaginationStream
.
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.
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.
Trait Implementations§
source§impl Clone for ListLayerVersionsFluentBuilder
impl Clone for ListLayerVersionsFluentBuilder
source§fn clone(&self) -> ListLayerVersionsFluentBuilder
fn clone(&self) -> ListLayerVersionsFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more