Interface TrialComponentStatus.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TrialComponentStatus.Builder,TrialComponentStatus>,SdkBuilder<TrialComponentStatus.Builder,TrialComponentStatus>,SdkPojo
- Enclosing class:
- TrialComponentStatus
public static interface TrialComponentStatus.Builder extends SdkPojo, CopyableBuilder<TrialComponentStatus.Builder,TrialComponentStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TrialComponentStatus.Buildermessage(String message)If the component failed, a message describing why.TrialComponentStatus.BuilderprimaryStatus(String primaryStatus)The status of the trial component.TrialComponentStatus.BuilderprimaryStatus(TrialComponentPrimaryStatus primaryStatus)The status of the trial component.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
primaryStatus
TrialComponentStatus.Builder primaryStatus(String primaryStatus)
The status of the trial component.
- Parameters:
primaryStatus- The status of the trial component.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TrialComponentPrimaryStatus,TrialComponentPrimaryStatus
-
primaryStatus
TrialComponentStatus.Builder primaryStatus(TrialComponentPrimaryStatus primaryStatus)
The status of the trial component.
- Parameters:
primaryStatus- The status of the trial component.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TrialComponentPrimaryStatus,TrialComponentPrimaryStatus
-
message
TrialComponentStatus.Builder message(String message)
If the component failed, a message describing why.
- Parameters:
message- If the component failed, a message describing why.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-