Interface ListFunctionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListFunctionsResponse.Builder,ListFunctionsResponse>,LambdaResponse.Builder,SdkBuilder<ListFunctionsResponse.Builder,ListFunctionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListFunctionsResponse
@Mutable @NotThreadSafe 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.Builderfunctions(Collection<FunctionConfiguration> functions)A list of Lambda functions.ListFunctionsResponse.Builderfunctions(Consumer<FunctionConfiguration.Builder>... functions)A list of Lambda functions.ListFunctionsResponse.Builderfunctions(FunctionConfiguration... functions)A list of Lambda functions.ListFunctionsResponse.BuildernextMarker(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, sdkFieldNameToField, 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.Builderavoiding the need to create one manually viaFunctionConfiguration.builder().When the
Consumercompletes,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)
-
-