Interface ListFunctionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<ListFunctionsResponse.Builder,ListFunctionsResponse>
,LambdaResponse.Builder
,SdkBuilder<ListFunctionsResponse.Builder,ListFunctionsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ListFunctionsResponse
public static interface ListFunctionsResponse.Builder extends LambdaResponse.Builder, SdkPojo, CopyableBuilder<ListFunctionsResponse.Builder,ListFunctionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListFunctionsResponse.Builder
functions(Collection<FunctionConfiguration> functions)
A list of Lambda functions.ListFunctionsResponse.Builder
functions(Consumer<FunctionConfiguration.Builder>... functions)
A list of Lambda functions.ListFunctionsResponse.Builder
functions(FunctionConfiguration... functions)
A list of Lambda functions.ListFunctionsResponse.Builder
nextMarker(String nextMarker)
The pagination token that's included if more results are available.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.lambda.model.LambdaResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
nextMarker
ListFunctionsResponse.Builder nextMarker(String nextMarker)
The pagination token that's included if more results are available.
- Parameters:
nextMarker
- The pagination token that's included if more results are available.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
functions
ListFunctionsResponse.Builder functions(Collection<FunctionConfiguration> functions)
A list of Lambda functions.
- Parameters:
functions
- A list of Lambda functions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
functions
ListFunctionsResponse.Builder functions(FunctionConfiguration... functions)
A list of Lambda functions.
- Parameters:
functions
- A list of Lambda functions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
functions
ListFunctionsResponse.Builder functions(Consumer<FunctionConfiguration.Builder>... functions)
A list of Lambda functions.
This is a convenience method that creates an instance of theFunctionConfiguration.Builder
avoiding the need to create one manually viaFunctionConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#functions(List
.) - Parameters:
functions
- a consumer that will call methods onFunctionConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#functions(java.util.Collection
)
-
-