Interface FunctionParameter.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<FunctionParameter.Builder,FunctionParameter>
,SdkBuilder<FunctionParameter.Builder,FunctionParameter>
,SdkPojo
- Enclosing class:
- FunctionParameter
public static interface FunctionParameter.Builder extends SdkPojo, CopyableBuilder<FunctionParameter.Builder,FunctionParameter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FunctionParameter.Builder
name(String name)
The name of the parameter.FunctionParameter.Builder
type(String type)
The data type of the parameter.FunctionParameter.Builder
value(String value)
The value of the parameter.-
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
-
name
FunctionParameter.Builder name(String name)
The name of the parameter.
- Parameters:
name
- The name of the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
FunctionParameter.Builder type(String type)
The data type of the parameter.
- Parameters:
type
- The data type of the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
FunctionParameter.Builder value(String value)
The value of the parameter.
- Parameters:
value
- The value of the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-