Values.AcmCertificateMetadataSourceContains ACM-specific metadata about a certificate.
type nonrec t = {createdAt : TStamp.t option;The time at which the certificate was requested.
*)exported : NullableBoolean.t option;Indicates whether the certificate has been exported.
*)importedAt : TStamp.t option;The date and time when the certificate was imported. This value exists only when the certificate type is IMPORTED.
*)inUse : NullableBoolean.t option;Indicates whether the certificate is currently in use by an Amazon Web Services service.
*)issuedAt : TStamp.t option;The time at which the certificate was issued. This value exists only when the certificate type is AMAZON_ISSUED.
*)renewalEligibility : RenewalEligibility.t option;Specifies whether the certificate is eligible for renewal. At this time, only exported private certificates can be renewed with the RenewCertificate command.
*)revokedAt : TStamp.t option;The time at which the certificate was revoked. This value exists only when the certificate status is REVOKED.
*)status : CertificateStatus.t option;The status of the certificate. A certificate enters status PENDING_VALIDATION upon being requested, unless it fails for any of the reasons given in the troubleshooting topic Certificate request fails. ACM makes repeated attempts to validate a certificate for 72 hours and then times out. If a certificate shows status FAILED or VALIDATION_TIMED_OUT, delete the request, correct the issue with DNS validation or Email validation, and try again. If validation succeeds, the certificate enters status ISSUED.
*)renewalStatus : RenewalStatus.t option;The renewal status of the certificate.
*)type_ : CertificateType.t option;The source of the certificate. For certificates provided by ACM, this value is AMAZON_ISSUED. For certificates that you imported with ImportCertificate, this value is IMPORTED. ACM does not provide managed renewal for imported certificates. For more information about the differences between certificates that you import and those that ACM provides, see Importing Certificates in the Certificate Manager User Guide.
*)exportOption : CertificateExport.t option;Indicates whether the certificate can be exported.
*)managedBy : CertificateManagedBy.t option;Identifies the Amazon Web Services service that manages the certificate issued by ACM.
*)validationMethod : ValidationMethod.t option;Specifies the domain validation method.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of NullableBoolean.t
| `Enum of string
| `Timestamp of TStamp.t ])
list ]