Module Values.MFADeviceSource

Contains information about an MFA device. This data type is used as a response element in the ListMFADevices operation.

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

    The user with whom the MFA device is associated.

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

    The serial number that uniquely identifies the MFA device. For virtual MFA devices, the serial number is the device ARN.

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

    The date when the MFA device was enabled for the user.

    *)
}
Sourceval make : ?userName:??? -> ?serialNumber:??? -> ?enableDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UserNameType.t | `Timestamp of DateType.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