Module Values.SigningCertificateSource

Contains information about an X.509 signing certificate. This data type is used as a response element in the UploadSigningCertificate and ListSigningCertificates operations.

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

    The name of the user the signing certificate is associated with.

    *)
  2. certificateId : CertificateIdType.t option;
    (*

    The ID for the signing certificate.

    *)
  3. certificateBody : CertificateBodyType.t option;
    (*

    The contents of the signing certificate.

    *)
  4. status : StatusType.t option;
    (*

    The status of the signing certificate. Active means that the key is valid for API calls, while Inactive means it is not.

    *)
  5. uploadDate : DateType.t option;
    (*

    The date when the signing certificate was uploaded.

    *)
}
Sourceval make : ?userName:??? -> ?certificateId:??? -> ?certificateBody:??? -> ?status:??? -> ?uploadDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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