Module Values.SessionSource

Contains information about the authenticated session.

Sourcetype nonrec t = {
  1. uid : String_.t option;
    (*

    The unique identifier of the session.

    *)
  2. mfaStatus : MfaStatus.t option;
    (*

    Indicates whether or not multi-factor authencation (MFA) was used during authentication. In Amazon Web Services CloudTrail, you can find this value as userIdentity.sessionContext.attributes.mfaAuthenticated.

    *)
  3. createdTime : Timestamp.t option;
    (*

    The timestamp for when the session was created. In Amazon Web Services CloudTrail, you can find this value as userIdentity.sessionContext.attributes.creationDate.

    *)
  4. issuer : String_.t option;
    (*

    Identifier of the session issuer. In Amazon Web Services CloudTrail, you can find this value as userIdentity.sessionContext.sessionIssuer.arn.

    *)
}
Sourceval make : ?uid:??? -> ?mfaStatus:??? -> ?createdTime:??? -> ?issuer:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Timestamp.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