Interface ListStageSessionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListStageSessionsResponse.Builder,ListStageSessionsResponse>,IvsRealTimeResponse.Builder,SdkBuilder<ListStageSessionsResponse.Builder,ListStageSessionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListStageSessionsResponse
public static interface ListStageSessionsResponse.Builder extends IvsRealTimeResponse.Builder, SdkPojo, CopyableBuilder<ListStageSessionsResponse.Builder,ListStageSessionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListStageSessionsResponse.BuildernextToken(String nextToken)If there are more stage sessions thanmaxResults, usenextTokenin the request to get the next set.ListStageSessionsResponse.BuilderstageSessions(Collection<StageSessionSummary> stageSessions)List of matching stage sessions.ListStageSessionsResponse.BuilderstageSessions(Consumer<StageSessionSummary.Builder>... stageSessions)List of matching stage sessions.ListStageSessionsResponse.BuilderstageSessions(StageSessionSummary... stageSessions)List of matching stage sessions.-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
stageSessions
ListStageSessionsResponse.Builder stageSessions(Collection<StageSessionSummary> stageSessions)
List of matching stage sessions.
- Parameters:
stageSessions- List of matching stage sessions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stageSessions
ListStageSessionsResponse.Builder stageSessions(StageSessionSummary... stageSessions)
List of matching stage sessions.
- Parameters:
stageSessions- List of matching stage sessions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stageSessions
ListStageSessionsResponse.Builder stageSessions(Consumer<StageSessionSummary.Builder>... stageSessions)
List of matching stage sessions.
This is a convenience method that creates an instance of theStageSessionSummary.Builderavoiding the need to create one manually viaStageSessionSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#stageSessions(List.) - Parameters:
stageSessions- a consumer that will call methods onStageSessionSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#stageSessions(java.util.Collection)
-
nextToken
ListStageSessionsResponse.Builder nextToken(String nextToken)
If there are more stage sessions than
maxResults, usenextTokenin the request to get the next set.- Parameters:
nextToken- If there are more stage sessions thanmaxResults, usenextTokenin the request to get the next set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-