Values.GetCertificatesRequestSourceReturns information about one or more Amazon Lightsail SSL/TLS certificates. To get a summary of a certificate, omit includeCertificateDetails from your request. The response will include only the certificate Amazon Resource Name (ARN), certificate name, domain name, and tags.
type nonrec t = {certificateStatuses : CertificateStatusList.t option;The status of the certificates for which to return information. For example, specify ISSUED to return only certificates with an ISSUED status. When omitted, the response includes all of your certificates in the Amazon Web Services Region where the request is made, regardless of their current status.
*)includeCertificateDetails : IncludeCertificateDetails.t option;Indicates whether to include detailed information about the certificates in the response. When omitted, the response includes only the certificate names, Amazon Resource Names (ARNs), domain names, and tags.
*)certificateName : CertificateName.t option;The name for the certificate for which to return information. When omitted, the response includes all of your certificates in the Amazon Web Services Region where the request is made.
*)pageToken : String_.t option;The token to advance to the next page of results from your request. To get a page token, perform an initial GetCertificates request. If your results are paginated, the response will return a next page token that you can specify as the page token in a subsequent request.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of IncludeCertificateDetails.t
| `List of [> `Enum of string ] list
| `String of CertificateName.t ])
list ]