Module Values.CredentialSummarySource

A record of a presented X509 credential from a temporary credential request.

Sourcetype nonrec t = {
  1. seenAt : SyntheticTimestamp_date_time.t option;
    (*

    The ISO-8601 time stamp of when the certificate was last used in a temporary credential request.

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

    The serial number of the certificate.

    *)
  3. issuer : String_.t option;
    (*

    The fully qualified domain name of the issuing certificate for the presented end-entity certificate.

    *)
  4. enabled : Boolean.t option;
    (*

    Indicates whether the credential is enabled.

    *)
  5. x509CertificateData : String_.t option;
    (*

    The PEM-encoded data of the certificate.

    *)
  6. failed : Boolean.t option;
    (*

    Indicates whether the temporary credential request was successful.

    *)
}
Sourceval make : ?seenAt:??? -> ?serialNumber:??? -> ?issuer:??? -> ?enabled:??? -> ?x509CertificateData:??? -> ?failed:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t | `Timestamp of SyntheticTimestamp_date_time.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