Struct aws_sdk_lambda::client::fluent_builders::ListFunctions [−][src]
pub struct ListFunctions<C = DynConnector, M = AwsMiddleware, R = Standard> { /* fields omitted */ }
Expand description
Fluent builder constructing a request to ListFunctions
.
Returns a list of Lambda functions, with the version-specific configuration of each. Lambda returns up to 50 functions per call.
Set FunctionVersion
to ALL
to include all published versions of each function in
addition to the unpublished version.
The ListFunctions
action returns a subset of the FunctionConfiguration fields.
To get the additional fields (State, StateReasonCode, StateReason, LastUpdateStatus, LastUpdateStatusReason, LastUpdateStatusReasonCode)
for a function or version, use GetFunction.
Implementations
impl<C, M, R> ListFunctions<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> ListFunctions<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<ListFunctionsOutput, SdkError<ListFunctionsError>> where
R::Policy: SmithyRetryPolicy<ListFunctionsInputOperationOutputAlias, ListFunctionsOutput, ListFunctionsError, ListFunctionsInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<ListFunctionsOutput, SdkError<ListFunctionsError>> where
R::Policy: SmithyRetryPolicy<ListFunctionsInputOperationOutputAlias, ListFunctionsOutput, ListFunctionsError, ListFunctionsInputOperationRetryAlias>,
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.
For Lambda@Edge functions, the Amazon Web Services Region of the master function. For example, us-east-1
filters
the list of functions to only include Lambda@Edge functions replicated from a master function in US East (N.
Virginia). If specified, you must set FunctionVersion
to ALL
.
For Lambda@Edge functions, the Amazon Web Services Region of the master function. For example, us-east-1
filters
the list of functions to only include Lambda@Edge functions replicated from a master function in US East (N.
Virginia). If specified, you must set FunctionVersion
to ALL
.
Set to ALL
to include entries for all published versions of each function.
Set to ALL
to include entries for all published versions of each function.
Specify the pagination token that's returned by a previous request to retrieve the next page of results.
Specify the pagination token that's returned by a previous request to retrieve the next page of results.
The maximum number of functions to return in the response. Note that ListFunctions
returns a maximum of 50 items in each response,
even if you set the number higher.
The maximum number of functions to return in the response. Note that ListFunctions
returns a maximum of 50 items in each response,
even if you set the number higher.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !RefUnwindSafe for ListFunctions<C, M, R>
impl<C, M, R> Unpin for ListFunctions<C, M, R>
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !UnwindSafe for ListFunctions<C, M, R>
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more