Interface FunctionConfig.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<FunctionConfig.Builder,FunctionConfig>
,SdkBuilder<FunctionConfig.Builder,FunctionConfig>
,SdkPojo
- Enclosing class:
- FunctionConfig
public static interface FunctionConfig.Builder extends SdkPojo, CopyableBuilder<FunctionConfig.Builder,FunctionConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FunctionConfig.Builder
comment(String comment)
A comment to describe the function.FunctionConfig.Builder
runtime(String runtime)
The function's runtime environment verion.FunctionConfig.Builder
runtime(FunctionRuntime runtime)
The function's runtime environment verion.-
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
-
comment
FunctionConfig.Builder comment(String comment)
A comment to describe the function.
- Parameters:
comment
- A comment to describe the function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
runtime
FunctionConfig.Builder runtime(String runtime)
The function's runtime environment verion.
- Parameters:
runtime
- The function's runtime environment verion.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FunctionRuntime
,FunctionRuntime
-
runtime
FunctionConfig.Builder runtime(FunctionRuntime runtime)
The function's runtime environment verion.
- Parameters:
runtime
- The function's runtime environment verion.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FunctionRuntime
,FunctionRuntime
-
-