pub struct ListLayersFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to ListLayers
.
Lists Lambda layers and shows information about the latest version of each. Specify a runtime identifier to list only layers that indicate that they're compatible with that runtime. Specify a compatible architecture to include only layers that are compatible with that instruction set architecture.
Implementations§
source§impl ListLayersFluentBuilder
impl ListLayersFluentBuilder
sourcepub fn as_input(&self) -> &ListLayersInputBuilder
pub fn as_input(&self) -> &ListLayersInputBuilder
Access the ListLayers as a reference.
sourcepub async fn send(
self
) -> Result<ListLayersOutput, SdkError<ListLayersError, HttpResponse>>
pub async fn send( self ) -> Result<ListLayersOutput, SdkError<ListLayersError, 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<ListLayersOutput, ListLayersError, Self>
pub fn customize( self ) -> CustomizableOperation<ListLayersOutput, ListLayersError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn into_paginator(self) -> ListLayersPaginator
pub fn into_paginator(self) -> ListLayersPaginator
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, go1.x
.
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, go1.x
.
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, go1.x
.
The following list includes deprecated runtimes. For more information, see Runtime deprecation policy.
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 layers to return.
sourcepub fn get_max_items(&self) -> &Option<i32>
pub fn get_max_items(&self) -> &Option<i32>
The maximum number of layers 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 ListLayersFluentBuilder
impl Clone for ListLayersFluentBuilder
source§fn clone(&self) -> ListLayersFluentBuilder
fn clone(&self) -> ListLayersFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more