Interface ExperimentActionState.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExperimentActionState.Builder,ExperimentActionState>,SdkBuilder<ExperimentActionState.Builder,ExperimentActionState>,SdkPojo
- Enclosing class:
- ExperimentActionState
public static interface ExperimentActionState.Builder extends SdkPojo, CopyableBuilder<ExperimentActionState.Builder,ExperimentActionState>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExperimentActionState.Builderreason(String reason)The reason for the state.ExperimentActionState.Builderstatus(String status)The state of the action.ExperimentActionState.Builderstatus(ExperimentActionStatus status)The state of the action.-
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
-
status
ExperimentActionState.Builder status(String status)
The state of the action.
- Parameters:
status- The state of the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExperimentActionStatus,ExperimentActionStatus
-
status
ExperimentActionState.Builder status(ExperimentActionStatus status)
The state of the action.
- Parameters:
status- The state of the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExperimentActionStatus,ExperimentActionStatus
-
reason
ExperimentActionState.Builder reason(String reason)
The reason for the state.
- Parameters:
reason- The reason for the state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-