Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Certificate

import type { Certificate } from "https://aws-api.deno.dev/v0.3/services/lightsail.ts?docs=full";

Describes the full details of an Amazon Lightsail SSL/TLS certificate.

Note: To get a summary of a certificate, use the GetCertificates action and ommit includeCertificateDetails from your request. The response will include only the certificate Amazon Resource Name (ARN), certificate name, domain name, and tags.

interface Certificate {
arn?: string | null;
createdAt?: Date | number | null;
domainName?: string | null;
domainValidationRecords?: DomainValidationRecord[] | null;
eligibleToRenew?: string | null;
inUseResourceCount?: number | null;
issuedAt?: Date | number | null;
issuerCA?: string | null;
keyAlgorithm?: string | null;
name?: string | null;
notAfter?: Date | number | null;
notBefore?: Date | number | null;
renewalSummary?: RenewalSummary | null;
requestFailureReason?: string | null;
revocationReason?: string | null;
revokedAt?: Date | number | null;
serialNumber?: string | null;
status?: CertificateStatus | null;
subjectAlternativeNames?: string[] | null;
supportCode?: string | null;
tags?: Tag[] | null;
}

§Properties

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the certificate.

§
createdAt?: Date | number | null
[src]

The timestamp when the certificate was created.

§
domainName?: string | null
[src]

The domain name of the certificate.

§
domainValidationRecords?: DomainValidationRecord[] | null
[src]

An array of objects that describe the domain validation records of the certificate.

§
eligibleToRenew?: string | null
[src]

The renewal eligibility of the certificate.

§
inUseResourceCount?: number | null
[src]

The number of Lightsail resources that the certificate is attached to.

§
issuedAt?: Date | number | null
[src]

The timestamp when the certificate was issued.

§
issuerCA?: string | null
[src]

The certificate authority that issued the certificate.

§
keyAlgorithm?: string | null
[src]

The algorithm used to generate the key pair (the public and private key) of the certificate.

§
name?: string | null
[src]

The name of the certificate (e.g., my-certificate).

§
notAfter?: Date | number | null
[src]

The timestamp when the certificate expires.

§
notBefore?: Date | number | null
[src]

The timestamp when the certificate is first valid.

§
renewalSummary?: RenewalSummary | null
[src]

An object that describes the status of the certificate renewal managed by Lightsail.

§
requestFailureReason?: string | null
[src]

The validation failure reason, if any, of the certificate.

The following failure reasons are possible:

    • NO_AVAILABLE_CONTACTS* - This failure applies to email validation, which is not available for Lightsail certificates.
    • ADDITIONAL_VERIFICATION_REQUIRED* - Lightsail requires additional information to process this certificate request. This can happen as a fraud-protection measure, such as when the domain ranks within the Alexa top 1000 websites. To provide the required information, use the AWS Support Center to contact AWS Support. Note: You cannot request a certificate for Amazon-owned domain names such as those ending in amazonaws.com, cloudfront.net, or elasticbeanstalk.com.
    • DOMAIN_NOT_ALLOWED* - One or more of the domain names in the certificate request was reported as an unsafe domain by VirusTotal. To correct the problem, search for your domain name on the VirusTotal website. If your domain is reported as suspicious, see Google Help for Hacked Websites to learn what you can do. If you believe that the result is a false positive, notify the organization that is reporting the domain. VirusTotal is an aggregate of several antivirus and URL scanners and cannot remove your domain from a block list itself. After you correct the problem and the VirusTotal registry has been updated, request a new certificate. If you see this error and your domain is not included in the VirusTotal list, visit the AWS Support Center and create a case.
    • INVALID_PUBLIC_DOMAIN* - One or more of the domain names in the certificate request is not valid. Typically, this is because a domain name in the request is not a valid top-level domain. Try to request a certificate again, correcting any spelling errors or typos that were in the failed request, and ensure that all domain names in the request are for valid top-level domains. For example, you cannot request a certificate for example.invalidpublicdomain because invalidpublicdomain is not a valid top-level domain.
    • OTHER* - Typically, this failure occurs when there is a typographical error in one or more of the domain names in the certificate request. Try to request a certificate again, correcting any spelling errors or typos that were in the failed request.
§
revocationReason?: string | null
[src]

The reason the certificate was revoked. This value is present only when the certificate status is REVOKED.

§
revokedAt?: Date | number | null
[src]

The timestamp when the certificate was revoked. This value is present only when the certificate status is REVOKED.

§
serialNumber?: string | null
[src]

The serial number of the certificate.

§
status?: CertificateStatus | null
[src]

The validation status of the certificate.

§
subjectAlternativeNames?: string[] | null
[src]

An array of strings that specify the alternate domains (e.g., example2.com) and subdomains (e.g., blog.example.com) of the certificate.

§
supportCode?: string | null
[src]

The support code. Include this code in your email to support when you have questions about your Lightsail certificate. This code enables our support team to look up your Lightsail information more easily.

§
tags?: Tag[] | null
[src]

The tag keys and optional values for the resource. For more information about tags in Lightsail, see the Amazon Lightsail Developer Guide.