Module Values.UpdateCertificateRequestSource

Updates the active and inactive dates for a certificate.

Sourcetype nonrec t = {
  1. certificateId : CertificateId.t;
    (*

    The identifier of the certificate object that you are updating.

    *)
  2. activeDate : CertDate.t option;
    (*

    An optional date that specifies when the certificate becomes active. If you do not specify a value, ActiveDate takes the same value as NotBeforeDate, which is specified by the CA.

    *)
  3. inactiveDate : CertDate.t option;
    (*

    An optional date that specifies when the certificate becomes inactive. If you do not specify a value, InactiveDate takes the same value as NotAfterDate, which is specified by the CA.

    *)
  4. description : Description.t option;
    (*

    A short description to help identify the certificate.

    *)
}
Sourceval context_ : string
Sourceval make : ?activeDate:??? -> ?inactiveDate:??? -> ?description:??? -> certificateId:CertificateId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CertificateId.t | `Timestamp of CertDate.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