Module Values.GetMFADeviceResponseSource

Retrieves information about an MFA device for a specified user.

Sourcetype getMFADeviceResult = {
  1. userName : UserNameType.t option;
    (*

    The friendly name identifying the user.

    *)
  2. serialNumber : SerialNumberType.t option;
    (*

    Serial number that uniquely identifies the MFA device. For this API, we only accept FIDO security key ARNs.

    *)
  3. enableDate : DateType.t option;
    (*

    The date that a specified user's MFA device was first enabled.

    *)
  4. certifications : CertificationMapType.t option;
    (*

    The certifications of a specified user's MFA device. We currently provide FIPS-140-2, FIPS-140-3, and FIDO certification levels obtained from FIDO Alliance Metadata Service (MDS).

    *)
}
Sourceand responseMetaData = unit
Sourceand t = {
  1. getMFADeviceResult : getMFADeviceResult;
  2. responseMetaData : responseMetaData;
}
Sourcetype error = [
  1. | `NoSuchEntityException of NoSuchEntityException.t
  2. | `ServiceFailureException of ServiceFailureException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval context_ : string
Sourceval make : ?userName:??? -> ?serialNumber:??? -> ?enableDate:??? -> ?certifications:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `NoSuchEntityException of NoSuchEntityException.t | `ServiceFailureException of ServiceFailureException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `NoSuchEntityException of NoSuchEntityException.t | `ServiceFailureException of ServiceFailureException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Map of ([> `String of CertificationKeyType.t ] * [> `String of CertificationValueType.t ]) list | `String of UserNameType.t | `Timestamp of DateType.t ]) 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