Module Values.SessionContextSource

Provides information about a session that was created for an entity that performed an action by using temporary security credentials.

Sourcetype nonrec t = {
  1. attributes : SessionContextAttributes.t option;
    (*

    The date and time when the credentials were issued, and whether the credentials were authenticated with a multi-factor authentication (MFA) device.

    *)
  2. sessionIssuer : SessionIssuer.t option;
    (*

    The source and type of credentials that were issued to the entity.

    *)
}
Sourceval make : ?attributes:??? -> ?sessionIssuer:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of bool | `String of string | `Timestamp of string ]) list ]) 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