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