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

CertificateSummary

import type { CertificateSummary } from "https://aws-api.deno.dev/v0.4/services/acm.ts?docs=full";

This structure is returned in the response object of "ListCertificates" action.

interface CertificateSummary {
CertificateArn?: string | null;
CreatedAt?: Date | number | null;
DomainName?: string | null;
Exported?: boolean | null;
ExtendedKeyUsages?: ExtendedKeyUsageName[] | null;
HasAdditionalSubjectAlternativeNames?: boolean | null;
ImportedAt?: Date | number | null;
InUse?: boolean | null;
IssuedAt?: Date | number | null;
KeyAlgorithm?: KeyAlgorithm | null;
KeyUsages?: KeyUsageName[] | null;
NotAfter?: Date | number | null;
NotBefore?: Date | number | null;
RenewalEligibility?: RenewalEligibility | null;
RevokedAt?: Date | number | null;
Status?: CertificateStatus | null;
SubjectAlternativeNameSummaries?: string[] | null;
Type?: CertificateType | null;
}

§Properties

§
CertificateArn?: string | null
[src]

Amazon Resource Name (ARN) of the certificate. This is of the form:

arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012

For more information about ARNs, see Amazon Resource Names (ARNs).

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

The time at which the certificate was requested.

§
DomainName?: string | null
[src]

Fully qualified domain name (FQDN), such as www.example.com or example.com, for the certificate.

§
Exported?: boolean | null
[src]

Indicates whether the certificate has been exported. This value exists only when the certificate type is PRIVATE.

§
ExtendedKeyUsages?: ExtendedKeyUsageName[] | null
[src]

Contains a list of Extended Key Usage X.509 v3 extension objects. Each object specifies a purpose for which the certificate public key can be used and consists of a name and an object identifier (OID).

§
HasAdditionalSubjectAlternativeNames?: boolean | null
[src]

When called by ListCertificates, indicates whether the full list of subject alternative names has been included in the response. If false, the response includes all of the subject alternative names included in the certificate. If true, the response only includes the first 100 subject alternative names included in the certificate. To display the full list of subject alternative names, use DescribeCertificate.

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

The date and time when the certificate was imported. This value exists only when the certificate type is IMPORTED.

§
InUse?: boolean | null
[src]

Indicates whether the certificate is currently in use by any Amazon Web Services resources.

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

The time at which the certificate was issued. This value exists only when the certificate type is AMAZON_ISSUED.

§
KeyAlgorithm?: KeyAlgorithm | null
[src]

The algorithm that was used to generate the public-private key pair.

§
KeyUsages?: KeyUsageName[] | null
[src]

A list of Key Usage X.509 v3 extension objects. Each object is a string value that identifies the purpose of the public key contained in the certificate. Possible extension values include DIGITAL_SIGNATURE, KEY_ENCHIPHERMENT, NON_REPUDIATION, and more.

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

The time after which the certificate is not valid.

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

The time before which the certificate is not valid.

§
RenewalEligibility?: RenewalEligibility | null
[src]

Specifies whether the certificate is eligible for renewal. At this time, only exported private certificates can be renewed with the "RenewCertificate" command.

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

The time at which the certificate was revoked. This value exists only when the certificate status is REVOKED.

§
Status?: CertificateStatus | null
[src]

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.

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

One or more domain names (subject alternative names) included in the certificate. This list contains the domain names that are bound to the public key that is contained in the certificate. The subject alternative names include the canonical domain name (CN) of the certificate and additional domain names that can be used to connect to the website.

When called by ListCertificates, this parameter will only return the first 100 subject alternative names included in the certificate. To display the full list of subject alternative names, use DescribeCertificate.

§
Type?: CertificateType | null
[src]

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.