Module Values.SessionContextAttributesSource

Provides information about the context in which temporary security credentials were issued to an entity.

Sourcetype nonrec t = {
  1. creationDate : string option;
    (*

    The date and time, in UTC and ISO 8601 format, when the credentials were issued.

    *)
  2. mfaAuthenticated : bool option;
    (*

    Specifies whether the credentials were authenticated with a multi-factor authentication (MFA) device.

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