Interface ListFunctionEventInvokeConfigsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<ListFunctionEventInvokeConfigsResponse.Builder,ListFunctionEventInvokeConfigsResponse>
,LambdaResponse.Builder
,SdkBuilder<ListFunctionEventInvokeConfigsResponse.Builder,ListFunctionEventInvokeConfigsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ListFunctionEventInvokeConfigsResponse
public static interface ListFunctionEventInvokeConfigsResponse.Builder extends LambdaResponse.Builder, SdkPojo, CopyableBuilder<ListFunctionEventInvokeConfigsResponse.Builder,ListFunctionEventInvokeConfigsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListFunctionEventInvokeConfigsResponse.Builder
functionEventInvokeConfigs(Collection<FunctionEventInvokeConfig> functionEventInvokeConfigs)
A list of configurations.ListFunctionEventInvokeConfigsResponse.Builder
functionEventInvokeConfigs(Consumer<FunctionEventInvokeConfig.Builder>... functionEventInvokeConfigs)
A list of configurations.ListFunctionEventInvokeConfigsResponse.Builder
functionEventInvokeConfigs(FunctionEventInvokeConfig... functionEventInvokeConfigs)
A list of configurations.ListFunctionEventInvokeConfigsResponse.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
-
functionEventInvokeConfigs
ListFunctionEventInvokeConfigsResponse.Builder functionEventInvokeConfigs(Collection<FunctionEventInvokeConfig> functionEventInvokeConfigs)
A list of configurations.
- Parameters:
functionEventInvokeConfigs
- A list of configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
functionEventInvokeConfigs
ListFunctionEventInvokeConfigsResponse.Builder functionEventInvokeConfigs(FunctionEventInvokeConfig... functionEventInvokeConfigs)
A list of configurations.
- Parameters:
functionEventInvokeConfigs
- A list of configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
functionEventInvokeConfigs
ListFunctionEventInvokeConfigsResponse.Builder functionEventInvokeConfigs(Consumer<FunctionEventInvokeConfig.Builder>... functionEventInvokeConfigs)
A list of configurations.
This is a convenience method that creates an instance of theFunctionEventInvokeConfig.Builder
avoiding the need to create one manually viaFunctionEventInvokeConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#functionEventInvokeConfigs(List
.) - Parameters:
functionEventInvokeConfigs
- a consumer that will call methods onFunctionEventInvokeConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#functionEventInvokeConfigs(java.util.Collection
)
-
nextMarker
ListFunctionEventInvokeConfigsResponse.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.
-
-