Module Values.IssuerDetailsSource

Details associated with the issuer of a license.

Sourcetype nonrec t = {
  1. name : String_.t option;
    (*

    Issuer name.

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

    Asymmetric KMS key from Key Management Service. The KMS key must have a key usage of sign and verify, and support the RSASSA-PSS SHA-256 signing algorithm.

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

    Issuer key fingerprint.

    *)
}
Sourceval make : ?name:??? -> ?signKey:??? -> ?keyFingerprint:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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