Module Values.GetSessionResponseSource

Session lifecycle/status fields, ordered after IDs in session shapes.

Sourcetype nonrec t = {
  1. sessionId : SessionId.t option;
    (*

    The session ID.

    *)
  2. fleetId : FleetId.t option;
    (*

    The fleet ID for the session.

    *)
  3. workerId : WorkerId.t option;
    (*

    The worker ID for the session.

    *)
  4. startedAt : StartedAt.t option;
    (*

    The date and time the resource started running.

    *)
  5. lifecycleStatus : SessionLifecycleStatus.t option;
    (*

    The life cycle status of the session.

    *)
  6. endedAt : EndedAt.t option;
    (*

    The date and time the resource ended running.

    *)
  7. targetLifecycleStatus : SessionLifecycleTargetStatus.t option;
    (*

    The life cycle status with which the session started.

    *)
  8. updatedAt : UpdatedAt.t option;
    (*

    The date and time the resource was updated.

    *)
  9. updatedBy : UpdatedBy.t option;
    (*

    The user or system that updated this resource.

    *)
  10. log : LogConfiguration.t option;
    (*

    The session log.

    *)
  11. hostProperties : HostPropertiesResponse.t option;
    (*

    Provides the Amazon EC2 properties of the host.

    *)
  12. workerLog : LogConfiguration.t option;
    (*

    The worker log for the session.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerErrorException of InternalServerErrorException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?sessionId:??? -> ?fleetId:??? -> ?workerId:??? -> ?startedAt:??? -> ?lifecycleStatus:??? -> ?endedAt:??? -> ?targetLifecycleStatus:??? -> ?updatedAt:??? -> ?updatedBy:??? -> ?log:??? -> ?hostProperties:??? -> ?workerLog:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerErrorException of InternalServerErrorException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerErrorException of InternalServerErrorException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SessionId.t | `Structure of (string * [> `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of LogDriver.t | `Structure of (string * [> `List of [> `String of IpV4Address.t ] list ]) list ]) list | `Timestamp of StartedAt.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t