Interface FunctionDefaultExecutionConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FunctionDefaultExecutionConfig.Builder,FunctionDefaultExecutionConfig>,SdkBuilder<FunctionDefaultExecutionConfig.Builder,FunctionDefaultExecutionConfig>,SdkPojo
- Enclosing class:
- FunctionDefaultExecutionConfig
public static interface FunctionDefaultExecutionConfig.Builder extends SdkPojo, CopyableBuilder<FunctionDefaultExecutionConfig.Builder,FunctionDefaultExecutionConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description FunctionDefaultExecutionConfig.BuilderisolationMode(String isolationMode)Sets the value of the IsolationMode property for this object.FunctionDefaultExecutionConfig.BuilderisolationMode(FunctionIsolationMode isolationMode)Sets the value of the IsolationMode property for this object.default FunctionDefaultExecutionConfig.BuilderrunAs(Consumer<FunctionRunAsConfig.Builder> runAs)Sets the value of the RunAs property for this object.FunctionDefaultExecutionConfig.BuilderrunAs(FunctionRunAsConfig runAs)Sets the value of the RunAs property for this object.-
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
-
isolationMode
FunctionDefaultExecutionConfig.Builder isolationMode(String isolationMode)
Sets the value of the IsolationMode property for this object.- Parameters:
isolationMode- The new value for the IsolationMode property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FunctionIsolationMode,FunctionIsolationMode
-
isolationMode
FunctionDefaultExecutionConfig.Builder isolationMode(FunctionIsolationMode isolationMode)
Sets the value of the IsolationMode property for this object.- Parameters:
isolationMode- The new value for the IsolationMode property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FunctionIsolationMode,FunctionIsolationMode
-
runAs
FunctionDefaultExecutionConfig.Builder runAs(FunctionRunAsConfig runAs)
Sets the value of the RunAs property for this object.- Parameters:
runAs- The new value for the RunAs property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
runAs
default FunctionDefaultExecutionConfig.Builder runAs(Consumer<FunctionRunAsConfig.Builder> runAs)
Sets the value of the RunAs property for this object. This is a convenience method that creates an instance of theFunctionRunAsConfig.Builderavoiding the need to create one manually viaFunctionRunAsConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed torunAs(FunctionRunAsConfig).- Parameters:
runAs- a consumer that will call methods onFunctionRunAsConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
runAs(FunctionRunAsConfig)
-
-