Module Values.AwsIamAccessKeySessionContextAttributesSource

Attributes of the session that the key was used for.

Sourcetype nonrec t = {
  1. mfaAuthenticated : Boolean.t option;
    (*

    Indicates whether the session used multi-factor authentication (MFA).

    *)
  2. creationDate : NonEmptyString.t option;
    (*

    Indicates when the session was created. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

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