Interface Stage.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Stage.Builder,Stage>,SdkBuilder<Stage.Builder,Stage>,SdkPojo
- Enclosing class:
- Stage
public static interface Stage.Builder extends SdkPojo, CopyableBuilder<Stage.Builder,Stage>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Stage.BuilderactiveSessionId(String activeSessionId)ID of the active session within the stage.Stage.Builderarn(String arn)Stage ARN.default Stage.BuilderautoParticipantRecordingConfiguration(Consumer<AutoParticipantRecordingConfiguration.Builder> autoParticipantRecordingConfiguration)Configuration object for individual participant recording, attached to the stage.Stage.BuilderautoParticipantRecordingConfiguration(AutoParticipantRecordingConfiguration autoParticipantRecordingConfiguration)Configuration object for individual participant recording, attached to the stage.default Stage.Builderendpoints(Consumer<StageEndpoints.Builder> endpoints)Summary information about various endpoints for a stage.Stage.Builderendpoints(StageEndpoints endpoints)Summary information about various endpoints for a stage.Stage.Buildername(String name)Stage name.Stage.Buildertags(Map<String,String> tags)Tags attached to the resource.-
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
-
arn
Stage.Builder arn(String arn)
Stage ARN.
- Parameters:
arn- Stage ARN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
Stage.Builder name(String name)
Stage name.
- Parameters:
name- Stage name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
activeSessionId
Stage.Builder activeSessionId(String activeSessionId)
ID of the active session within the stage.
- Parameters:
activeSessionId- ID of the active session within the stage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
Stage.Builder tags(Map<String,String> tags)
Tags attached to the resource. Array of maps, each of the form
string:string (key:value). See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.- Parameters:
tags- Tags attached to the resource. Array of maps, each of the formstring:string (key:value). See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
autoParticipantRecordingConfiguration
Stage.Builder autoParticipantRecordingConfiguration(AutoParticipantRecordingConfiguration autoParticipantRecordingConfiguration)
Configuration object for individual participant recording, attached to the stage.
- Parameters:
autoParticipantRecordingConfiguration- Configuration object for individual participant recording, attached to the stage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
autoParticipantRecordingConfiguration
default Stage.Builder autoParticipantRecordingConfiguration(Consumer<AutoParticipantRecordingConfiguration.Builder> autoParticipantRecordingConfiguration)
Configuration object for individual participant recording, attached to the stage.
This is a convenience method that creates an instance of theAutoParticipantRecordingConfiguration.Builderavoiding the need to create one manually viaAutoParticipantRecordingConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toautoParticipantRecordingConfiguration(AutoParticipantRecordingConfiguration).- Parameters:
autoParticipantRecordingConfiguration- a consumer that will call methods onAutoParticipantRecordingConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
autoParticipantRecordingConfiguration(AutoParticipantRecordingConfiguration)
-
endpoints
Stage.Builder endpoints(StageEndpoints endpoints)
Summary information about various endpoints for a stage.
- Parameters:
endpoints- Summary information about various endpoints for a stage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endpoints
default Stage.Builder endpoints(Consumer<StageEndpoints.Builder> endpoints)
Summary information about various endpoints for a stage.
This is a convenience method that creates an instance of theStageEndpoints.Builderavoiding the need to create one manually viaStageEndpoints.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toendpoints(StageEndpoints).- Parameters:
endpoints- a consumer that will call methods onStageEndpoints.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
endpoints(StageEndpoints)
-
-