Interface ListParticipantsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListParticipantsResponse.Builder,ListParticipantsResponse>,IvsRealTimeResponse.Builder,SdkBuilder<ListParticipantsResponse.Builder,ListParticipantsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListParticipantsResponse
public static interface ListParticipantsResponse.Builder extends IvsRealTimeResponse.Builder, SdkPojo, CopyableBuilder<ListParticipantsResponse.Builder,ListParticipantsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListParticipantsResponse.BuildernextToken(String nextToken)If there are more participants thanmaxResults, usenextTokenin the request to get the next set.ListParticipantsResponse.Builderparticipants(Collection<ParticipantSummary> participants)List of the matching participants (summary information only).ListParticipantsResponse.Builderparticipants(Consumer<ParticipantSummary.Builder>... participants)List of the matching participants (summary information only).ListParticipantsResponse.Builderparticipants(ParticipantSummary... participants)List of the matching participants (summary information only).-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.ivsrealtime.model.IvsRealTimeResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
nextToken
ListParticipantsResponse.Builder nextToken(String nextToken)
If there are more participants than
maxResults, usenextTokenin the request to get the next set.- Parameters:
nextToken- If there are more participants thanmaxResults, usenextTokenin the request to get the next set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
participants
ListParticipantsResponse.Builder participants(Collection<ParticipantSummary> participants)
List of the matching participants (summary information only).
- Parameters:
participants- List of the matching participants (summary information only).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
participants
ListParticipantsResponse.Builder participants(ParticipantSummary... participants)
List of the matching participants (summary information only).
- Parameters:
participants- List of the matching participants (summary information only).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
participants
ListParticipantsResponse.Builder participants(Consumer<ParticipantSummary.Builder>... participants)
List of the matching participants (summary information only).
This is a convenience method that creates an instance of theParticipantSummary.Builderavoiding the need to create one manually viaParticipantSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#participants(List.) - Parameters:
participants- a consumer that will call methods onParticipantSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#participants(java.util.Collection)
-
-