Interface SessionSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SessionSummary.Builder,SessionSummary>,SdkBuilder<SessionSummary.Builder,SessionSummary>,SdkPojo
- Enclosing class:
- SessionSummary
@Mutable @NotThreadSafe public static interface SessionSummary.Builder extends SdkPojo, CopyableBuilder<SessionSummary.Builder,SessionSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SessionSummary.BuildercreatedAt(Instant createdAt)The timestamp for when the session was created.SessionSummary.BuilderlastUpdatedAt(Instant lastUpdatedAt)The timestamp for when the session was last modified.SessionSummary.BuildersessionArn(String sessionArn)The Amazon Resource Name (ARN) of the session.SessionSummary.BuildersessionId(String sessionId)The unique identifier for the session.SessionSummary.BuildersessionStatus(String sessionStatus)The current status of the session.SessionSummary.BuildersessionStatus(SessionStatus sessionStatus)The current status of the session.-
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
-
createdAt
SessionSummary.Builder createdAt(Instant createdAt)
The timestamp for when the session was created.
- Parameters:
createdAt- The timestamp for when the session was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedAt
SessionSummary.Builder lastUpdatedAt(Instant lastUpdatedAt)
The timestamp for when the session was last modified.
- Parameters:
lastUpdatedAt- The timestamp for when the session was last modified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sessionArn
SessionSummary.Builder sessionArn(String sessionArn)
The Amazon Resource Name (ARN) of the session.
- Parameters:
sessionArn- The Amazon Resource Name (ARN) of the session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sessionId
SessionSummary.Builder sessionId(String sessionId)
The unique identifier for the session.
- Parameters:
sessionId- The unique identifier for the session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sessionStatus
SessionSummary.Builder sessionStatus(String sessionStatus)
The current status of the session.
- Parameters:
sessionStatus- The current status of the session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SessionStatus,SessionStatus
-
sessionStatus
SessionSummary.Builder sessionStatus(SessionStatus sessionStatus)
The current status of the session.
- Parameters:
sessionStatus- The current status of the session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SessionStatus,SessionStatus
-
-