Interface PillarDifference.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PillarDifference.Builder,PillarDifference>,SdkBuilder<PillarDifference.Builder,PillarDifference>,SdkPojo
- Enclosing class:
- PillarDifference
public static interface PillarDifference.Builder extends SdkPojo, CopyableBuilder<PillarDifference.Builder,PillarDifference>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PillarDifference.BuilderdifferenceStatus(String differenceStatus)Indicates the type of change to the pillar.PillarDifference.BuilderdifferenceStatus(DifferenceStatus differenceStatus)Indicates the type of change to the pillar.PillarDifference.BuilderpillarId(String pillarId)Sets the value of the PillarId property for this object.PillarDifference.BuilderpillarName(String pillarName)Sets the value of the PillarName property for this object.PillarDifference.BuilderquestionDifferences(Collection<QuestionDifference> questionDifferences)List of question differences.PillarDifference.BuilderquestionDifferences(Consumer<QuestionDifference.Builder>... questionDifferences)List of question differences.PillarDifference.BuilderquestionDifferences(QuestionDifference... questionDifferences)List of question differences.-
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
-
pillarId
PillarDifference.Builder pillarId(String pillarId)
Sets the value of the PillarId property for this object.- Parameters:
pillarId- The new value for the PillarId property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pillarName
PillarDifference.Builder pillarName(String pillarName)
Sets the value of the PillarName property for this object.- Parameters:
pillarName- The new value for the PillarName property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
differenceStatus
PillarDifference.Builder differenceStatus(String differenceStatus)
Indicates the type of change to the pillar.
- Parameters:
differenceStatus- Indicates the type of change to the pillar.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DifferenceStatus,DifferenceStatus
-
differenceStatus
PillarDifference.Builder differenceStatus(DifferenceStatus differenceStatus)
Indicates the type of change to the pillar.
- Parameters:
differenceStatus- Indicates the type of change to the pillar.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DifferenceStatus,DifferenceStatus
-
questionDifferences
PillarDifference.Builder questionDifferences(Collection<QuestionDifference> questionDifferences)
List of question differences.
- Parameters:
questionDifferences- List of question differences.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
questionDifferences
PillarDifference.Builder questionDifferences(QuestionDifference... questionDifferences)
List of question differences.
- Parameters:
questionDifferences- List of question differences.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
questionDifferences
PillarDifference.Builder questionDifferences(Consumer<QuestionDifference.Builder>... questionDifferences)
List of question differences.
This is a convenience method that creates an instance of theQuestionDifference.Builderavoiding the need to create one manually viaQuestionDifference.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#questionDifferences(List.) - Parameters:
questionDifferences- a consumer that will call methods onQuestionDifference.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#questionDifferences(java.util.Collection)
-
-