Values.UpdateCertificateRequestSourceUpdates the active and inactive dates for a certificate.
type nonrec t = {certificateId : CertificateId.t;The identifier of the certificate object that you are updating.
*)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.
*)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.
*)description : Description.t option;A short description to help identify the certificate.
*)}val make :
?activeDate:??? ->
?inactiveDate:??? ->
?description:??? ->
certificateId:CertificateId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `String of CertificateId.t | `Timestamp of CertDate.t ])
list ]