Interface ChoiceUpdate.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ChoiceUpdate.Builder,ChoiceUpdate>,SdkBuilder<ChoiceUpdate.Builder,ChoiceUpdate>,SdkPojo
- Enclosing class:
- ChoiceUpdate
public static interface ChoiceUpdate.Builder extends SdkPojo, CopyableBuilder<ChoiceUpdate.Builder,ChoiceUpdate>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ChoiceUpdate.Buildernotes(String notes)The notes associated with a choice.ChoiceUpdate.Builderreason(String reason)The reason why a choice is non-applicable to a question in your workload.ChoiceUpdate.Builderreason(ChoiceReason reason)The reason why a choice is non-applicable to a question in your workload.ChoiceUpdate.Builderstatus(String status)The status of a choice.ChoiceUpdate.Builderstatus(ChoiceStatus status)The status of a choice.-
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
ChoiceUpdate.Builder status(String status)
The status of a choice.
- Parameters:
status- The status of a choice.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChoiceStatus,ChoiceStatus
-
status
ChoiceUpdate.Builder status(ChoiceStatus status)
The status of a choice.
- Parameters:
status- The status of a choice.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChoiceStatus,ChoiceStatus
-
reason
ChoiceUpdate.Builder reason(String reason)
The reason why a choice is non-applicable to a question in your workload.
- Parameters:
reason- The reason why a choice is non-applicable to a question in your workload.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChoiceReason,ChoiceReason
-
reason
ChoiceUpdate.Builder reason(ChoiceReason reason)
The reason why a choice is non-applicable to a question in your workload.
- Parameters:
reason- The reason why a choice is non-applicable to a question in your workload.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChoiceReason,ChoiceReason
-
notes
ChoiceUpdate.Builder notes(String notes)
The notes associated with a choice.
- Parameters:
notes- The notes associated with a choice.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-