Interface CreateSessionResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,BedrockAgentRuntimeResponse.Builder,Buildable,CopyableBuilder<CreateSessionResponse.Builder,CreateSessionResponse>,SdkBuilder<CreateSessionResponse.Builder,CreateSessionResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- CreateSessionResponse
@Mutable @NotThreadSafe public static interface CreateSessionResponse.Builder extends BedrockAgentRuntimeResponse.Builder, SdkPojo, CopyableBuilder<CreateSessionResponse.Builder,CreateSessionResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateSessionResponse.BuildercreatedAt(Instant createdAt)The timestamp for when the session was created.CreateSessionResponse.BuildersessionArn(String sessionArn)The Amazon Resource Name (ARN) of the created session.CreateSessionResponse.BuildersessionId(String sessionId)The unique identifier for the session.CreateSessionResponse.BuildersessionStatus(String sessionStatus)The current status of the session.CreateSessionResponse.BuildersessionStatus(SessionStatus sessionStatus)The current status of the session.-
Methods inherited from interface software.amazon.awssdk.services.bedrockagentruntime.model.BedrockAgentRuntimeResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
createdAt
CreateSessionResponse.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.
-
sessionArn
CreateSessionResponse.Builder sessionArn(String sessionArn)
The Amazon Resource Name (ARN) of the created session.
- Parameters:
sessionArn- The Amazon Resource Name (ARN) of the created session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sessionId
CreateSessionResponse.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
CreateSessionResponse.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
CreateSessionResponse.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
-
-