Interface CreateStageResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<CreateStageResponse.Builder,CreateStageResponse>,IvsRealTimeResponse.Builder,SdkBuilder<CreateStageResponse.Builder,CreateStageResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- CreateStageResponse
public static interface CreateStageResponse.Builder extends IvsRealTimeResponse.Builder, SdkPojo, CopyableBuilder<CreateStageResponse.Builder,CreateStageResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description CreateStageResponse.BuilderparticipantTokens(Collection<ParticipantToken> participantTokens)Participant tokens attached to the stage.CreateStageResponse.BuilderparticipantTokens(Consumer<ParticipantToken.Builder>... participantTokens)Participant tokens attached to the stage.CreateStageResponse.BuilderparticipantTokens(ParticipantToken... participantTokens)Participant tokens attached to the stage.default CreateStageResponse.Builderstage(Consumer<Stage.Builder> stage)The stage that was created.CreateStageResponse.Builderstage(Stage stage)The stage that was created.-
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
-
participantTokens
CreateStageResponse.Builder participantTokens(Collection<ParticipantToken> participantTokens)
Participant tokens attached to the stage. These correspond to the
participantsin the request.- Parameters:
participantTokens- Participant tokens attached to the stage. These correspond to theparticipantsin the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
participantTokens
CreateStageResponse.Builder participantTokens(ParticipantToken... participantTokens)
Participant tokens attached to the stage. These correspond to the
participantsin the request.- Parameters:
participantTokens- Participant tokens attached to the stage. These correspond to theparticipantsin the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
participantTokens
CreateStageResponse.Builder participantTokens(Consumer<ParticipantToken.Builder>... participantTokens)
Participant tokens attached to the stage. These correspond to the
This is a convenience method that creates an instance of theparticipantsin the request.ParticipantToken.Builderavoiding the need to create one manually viaParticipantToken.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#participantTokens(List.) - Parameters:
participantTokens- a consumer that will call methods onParticipantToken.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#participantTokens(java.util.Collection)
-
stage
CreateStageResponse.Builder stage(Stage stage)
The stage that was created.
- Parameters:
stage- The stage that was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stage
default CreateStageResponse.Builder stage(Consumer<Stage.Builder> stage)
The stage that was created.
This is a convenience method that creates an instance of theStage.Builderavoiding the need to create one manually viaStage.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tostage(Stage).- Parameters:
stage- a consumer that will call methods onStage.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
stage(Stage)
-
-