Interface ListFunctionsResponse.Builder
-
- All Superinterfaces:
AppSyncResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ListFunctionsResponse.Builder,ListFunctionsResponse>,SdkBuilder<ListFunctionsResponse.Builder,ListFunctionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListFunctionsResponse
public static interface ListFunctionsResponse.Builder extends AppSyncResponse.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 ofFunctionobjects.ListFunctionsResponse.Builderfunctions(Consumer<FunctionConfiguration.Builder>... functions)A list ofFunctionobjects.ListFunctionsResponse.Builderfunctions(FunctionConfiguration... functions)A list ofFunctionobjects.ListFunctionsResponse.BuildernextToken(String nextToken)An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.-
Methods inherited from interface software.amazon.awssdk.services.appsync.model.AppSyncResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
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
-
functions
ListFunctionsResponse.Builder functions(Collection<FunctionConfiguration> functions)
A list of
Functionobjects.- Parameters:
functions- A list ofFunctionobjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
functions
ListFunctionsResponse.Builder functions(FunctionConfiguration... functions)
A list of
Functionobjects.- Parameters:
functions- A list ofFunctionobjects.- 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
This is a convenience method that creates an instance of theFunctionobjects.FunctionConfiguration.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)
-
nextToken
ListFunctionsResponse.Builder nextToken(String nextToken)
An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.
- Parameters:
nextToken- An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-