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