Interface Function.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Function.Builder,Function>,SdkBuilder<Function.Builder,Function>,SdkPojo
- Enclosing class:
- Function
public static interface Function.Builder extends SdkPojo, CopyableBuilder<Function.Builder,Function>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Function.Builderdescription(String description)A description of the function and its purpose.Function.Buildername(String name)A name for the function.Function.Builderparameters(Map<String,ParameterDetail> parameters)The parameters that the agent elicits from the user to fulfill the function.Function.BuilderrequireConfirmation(String requireConfirmation)Contains information if user confirmation is required to invoke the function.Function.BuilderrequireConfirmation(RequireConfirmation requireConfirmation)Contains information if user confirmation is required to invoke 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 Detail
-
description
Function.Builder description(String description)
A description of the function and its purpose.
- Parameters:
description- A description of the function and its purpose.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
Function.Builder name(String name)
A name for the function.
- Parameters:
name- A name for the function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
Function.Builder parameters(Map<String,ParameterDetail> parameters)
The parameters that the agent elicits from the user to fulfill the function.
- Parameters:
parameters- The parameters that the agent elicits from the user to fulfill the function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
requireConfirmation
Function.Builder requireConfirmation(String requireConfirmation)
Contains information if user confirmation is required to invoke the function.
- Parameters:
requireConfirmation- Contains information if user confirmation is required to invoke the function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RequireConfirmation,RequireConfirmation
-
requireConfirmation
Function.Builder requireConfirmation(RequireConfirmation requireConfirmation)
Contains information if user confirmation is required to invoke the function.
- Parameters:
requireConfirmation- Contains information if user confirmation is required to invoke the function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RequireConfirmation,RequireConfirmation
-
-