Struct aws_sdk_lambda::client::fluent_builders::ListLayerVersions
source · pub struct ListLayerVersions { /* 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 ListLayerVersions
impl ListLayerVersions
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<ListLayerVersions, AwsResponseRetryClassifier>, SdkError<ListLayerVersionsError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<ListLayerVersions, AwsResponseRetryClassifier>, SdkError<ListLayerVersionsError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<ListLayerVersionsOutput, SdkError<ListLayerVersionsError>>
pub async fn send(
self
) -> Result<ListLayerVersionsOutput, SdkError<ListLayerVersionsError>>
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 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 Stream
.
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.
Trait Implementations§
source§impl Clone for ListLayerVersions
impl Clone for ListLayerVersions
source§fn clone(&self) -> ListLayerVersions
fn clone(&self) -> ListLayerVersions
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more