Values.GetSessionEndpointResponseSourceReturns the session endpoint URL and a time-limited authentication token for the specified session. Use the endpoint and token to connect a client to the session. Call this operation again when the authentication token expires to obtain a new token.
type nonrec t = {applicationId : ApplicationId.t option;The output contains the ID of the application.
*)sessionId : SessionId.t option;The output contains the ID of the session.
*)endpoint : EndpointUrl.t option;The endpoint URL for connecting to the session.
*)authToken : SessionAuthToken.t option;Authentication token for accessing the session endpoint.
*)authTokenExpiresAt : Date.t option;The expiration time of the authentication token.
*)}type nonrec error = [ | `InternalServerException of InternalServerException.t| `ResourceNotFoundException of ResourceNotFoundException.t| `ValidationException of ValidationException.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val to_value :
t ->
[> `Structure of
(string * [> `String of ApplicationId.t | `Timestamp of Date.t ]) list ]