Interface FunctionInvocationInput.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<FunctionInvocationInput.Builder,
,FunctionInvocationInput> SdkBuilder<FunctionInvocationInput.Builder,
,FunctionInvocationInput> SdkPojo
- Enclosing class:
FunctionInvocationInput
public static interface FunctionInvocationInput.Builder
extends SdkPojo, CopyableBuilder<FunctionInvocationInput.Builder,FunctionInvocationInput>
-
Method Summary
Modifier and TypeMethodDescriptionactionGroup
(String actionGroup) The action group that the function belongs to.The name of the function.parameters
(Collection<FunctionParameter> parameters) A list of parameters of the function.parameters
(Consumer<FunctionParameter.Builder>... parameters) A list of parameters of the function.parameters
(FunctionParameter... parameters) A list of parameters of the function.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
-
Method Details
-
actionGroup
The action group that the function belongs to.
- Parameters:
actionGroup
- The action group that the function belongs to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
function
The name of the function.
- Parameters:
function
- The name of the function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
A list of parameters of the function.
- Parameters:
parameters
- A list of parameters of the function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
A list of parameters of the function.
- Parameters:
parameters
- A list of parameters of the function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
A list of parameters of the function.
This is a convenience method that creates an instance of theFunctionParameter.Builder
avoiding the need to create one manually viaFunctionParameter.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toparameters(List<FunctionParameter>)
.- Parameters:
parameters
- a consumer that will call methods onFunctionParameter.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-