Interface MemorySessionSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MemorySessionSummary.Builder,MemorySessionSummary>,SdkBuilder<MemorySessionSummary.Builder,MemorySessionSummary>,SdkPojo
- Enclosing class:
- MemorySessionSummary
@Mutable @NotThreadSafe public static interface MemorySessionSummary.Builder extends SdkPojo, CopyableBuilder<MemorySessionSummary.Builder,MemorySessionSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MemorySessionSummary.BuildermemoryId(String memoryId)The unique identifier of the memory where the session summary is stored.MemorySessionSummary.BuildersessionExpiryTime(Instant sessionExpiryTime)The time when the memory duration for the session is set to end.MemorySessionSummary.BuildersessionId(String sessionId)The identifier for this session.MemorySessionSummary.BuildersessionStartTime(Instant sessionStartTime)The start time for this session.MemorySessionSummary.BuildersummaryText(String summaryText)The summarized text for this 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
-
memoryId
MemorySessionSummary.Builder memoryId(String memoryId)
The unique identifier of the memory where the session summary is stored.
- Parameters:
memoryId- The unique identifier of the memory where the session summary is stored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sessionExpiryTime
MemorySessionSummary.Builder sessionExpiryTime(Instant sessionExpiryTime)
The time when the memory duration for the session is set to end.
- Parameters:
sessionExpiryTime- The time when the memory duration for the session is set to end.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sessionId
MemorySessionSummary.Builder sessionId(String sessionId)
The identifier for this session.
- Parameters:
sessionId- The identifier for this session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sessionStartTime
MemorySessionSummary.Builder sessionStartTime(Instant sessionStartTime)
The start time for this session.
- Parameters:
sessionStartTime- The start time for this session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
summaryText
MemorySessionSummary.Builder summaryText(String summaryText)
The summarized text for this session.
- Parameters:
summaryText- The summarized text for this session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-