Interface StageSession.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StageSession.Builder,StageSession>,SdkBuilder<StageSession.Builder,StageSession>,SdkPojo
- Enclosing class:
- StageSession
public static interface StageSession.Builder extends SdkPojo, CopyableBuilder<StageSession.Builder,StageSession>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StageSession.BuilderendTime(Instant endTime)ISO 8601 timestamp (returned as a string) when the stage session ended.StageSession.BuildersessionId(String sessionId)ID of the session within the stage.StageSession.BuilderstartTime(Instant startTime)ISO 8601 timestamp (returned as a string) when this stage session began.-
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
-
sessionId
StageSession.Builder sessionId(String sessionId)
ID of the session within the stage.
- Parameters:
sessionId- ID of the session within the stage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startTime
StageSession.Builder startTime(Instant startTime)
ISO 8601 timestamp (returned as a string) when this stage session began.
- Parameters:
startTime- ISO 8601 timestamp (returned as a string) when this stage session began.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endTime
StageSession.Builder endTime(Instant endTime)
ISO 8601 timestamp (returned as a string) when the stage session ended. This is null if the stage is active.
- Parameters:
endTime- ISO 8601 timestamp (returned as a string) when the stage session ended. This is null if the stage is active.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-