Interface VoteSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VoteSummary.Builder,VoteSummary>,SdkBuilder<VoteSummary.Builder,VoteSummary>,SdkPojo
- Enclosing class:
- VoteSummary
public static interface VoteSummary.Builder extends SdkPojo, CopyableBuilder<VoteSummary.Builder,VoteSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VoteSummary.BuildermemberId(String memberId)The unique identifier of the member that cast the vote.VoteSummary.BuildermemberName(String memberName)The name of the member that cast the vote.VoteSummary.Buildervote(String vote)The vote value, eitherYESorNO.VoteSummary.Buildervote(VoteValue vote)The vote value, eitherYESorNO.-
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
-
vote
VoteSummary.Builder vote(String vote)
The vote value, either
YESorNO.
-
vote
VoteSummary.Builder vote(VoteValue vote)
The vote value, either
YESorNO.
-
memberName
VoteSummary.Builder memberName(String memberName)
The name of the member that cast the vote.
- Parameters:
memberName- The name of the member that cast the vote.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
memberId
VoteSummary.Builder memberId(String memberId)
The unique identifier of the member that cast the vote.
- Parameters:
memberId- The unique identifier of the member that cast the vote.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-