Module Values.SessionSummarySource

The summary of attributes associated with a session.

Sourcetype nonrec t = {
  1. applicationId : ApplicationId.t option;
    (*

    The ID of the application that the session belongs to.

    *)
  2. sessionId : SessionId.t option;
    (*

    The ID of the session.

    *)
  3. arn : SessionArn.t option;
    (*

    The Amazon Resource Name (ARN) of the session.

    *)
  4. name : String256.t option;
    (*

    The optional name of the session.

    *)
  5. state : SessionState.t option;
    (*

    The state of the session.

    *)
  6. stateDetails : String1024.t option;
    (*

    Additional details about the current state of the session.

    *)
  7. releaseLabel : ReleaseLabel.t option;
    (*

    The Amazon EMR release label associated with the session.

    *)
  8. executionRoleArn : IAMRoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the execution role for the session.

    *)
  9. createdBy : RequestIdentityUserArn.t option;
    (*

    The IAM principal that created the session.

    *)
  10. createdAt : Date.t option;
    (*

    The date and time that the session was created.

    *)
  11. updatedAt : Date.t option;
    (*

    The date and time that the session was last updated.

    *)
}
Sourceval make : ?applicationId:??? -> ?sessionId:??? -> ?arn:??? -> ?name:??? -> ?state:??? -> ?stateDetails:??? -> ?releaseLabel:??? -> ?executionRoleArn:??? -> ?createdBy:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ApplicationId.t | `Timestamp of Date.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