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

CertificateDetail

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

Contains metadata about an ACM certificate. This structure is returned in the response to a "DescribeCertificate" request.

interface CertificateDetail {
CertificateArn?: string | null;
CertificateAuthorityArn?: string | null;
CreatedAt?: Date | number | null;
DomainName?: string | null;
DomainValidationOptions?: DomainValidation[] | null;
ExtendedKeyUsages?: ExtendedKeyUsage[] | null;
FailureReason?: FailureReason | null;
ImportedAt?: Date | number | null;
InUseBy?: string[] | null;
IssuedAt?: Date | number | null;
Issuer?: string | null;
KeyAlgorithm?: KeyAlgorithm | null;
KeyUsages?: KeyUsage[] | null;
NotAfter?: Date | number | null;
NotBefore?: Date | number | null;
Options?: CertificateOptions | null;
RenewalEligibility?: RenewalEligibility | null;
RenewalSummary?: RenewalSummary | null;
RevocationReason?: RevocationReason | null;
RevokedAt?: Date | number | null;
Serial?: string | null;
SignatureAlgorithm?: string | null;
Status?: CertificateStatus | null;
Subject?: string | null;
SubjectAlternativeNames?: string[] | null;
Type?: CertificateType | null;
}

§Properties

§
CertificateArn?: string | null
[src]

The Amazon Resource Name (ARN) of the certificate. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.

§
CertificateAuthorityArn?: string | null
[src]

The Amazon Resource Name (ARN) of the ACM PCA private certificate authority (CA) that issued the certificate. This has the following format:

arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
§
CreatedAt?: Date | number | null
[src]

The time at which the certificate was requested.

§
DomainName?: string | null
[src]

The fully qualified domain name for the certificate, such as www.example.com or example.com.

§
DomainValidationOptions?: DomainValidation[] | null
[src]

Contains information about the initial validation of each domain name that occurs as a result of the "RequestCertificate" request. This field exists only when the certificate type is AMAZON_ISSUED.

§
ExtendedKeyUsages?: ExtendedKeyUsage[] | 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).

§
FailureReason?: FailureReason | null
[src]

The reason the certificate request failed. This value exists only when the certificate status is FAILED. For more information, see Certificate Request Failed in the Amazon Web Services Certificate Manager User Guide.

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

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

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

A list of ARNs for the Amazon Web Services resources that are using the certificate. A certificate can be used by multiple 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.

§
Issuer?: string | null
[src]

The name of the certificate authority that issued and signed the certificate.

§
KeyAlgorithm?: KeyAlgorithm | null
[src]

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

§
KeyUsages?: KeyUsage[] | 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.

§
Options?: CertificateOptions | null
[src]

Value that specifies whether to add the certificate to a transparency log. Certificate transparency makes it possible to detect SSL certificates that have been mistakenly or maliciously issued. A browser might respond to certificate that has not been logged by showing an error message. The logs are cryptographically secure.

§
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.

§
RenewalSummary?: RenewalSummary | null
[src]

Contains information about the status of ACM's managed renewal for the certificate. This field exists only when the certificate type is AMAZON_ISSUED.

§
RevocationReason?: RevocationReason | null
[src]

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

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

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

§
Serial?: string | null
[src]

The serial number of the certificate.

§
SignatureAlgorithm?: string | null
[src]

The algorithm that was used to sign the certificate.

§
Status?: CertificateStatus | null
[src]

The status of the certificate.

§
Subject?: string | null
[src]

The name of the entity that is associated with the public key contained in the certificate.

§
SubjectAlternativeNames?: 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.

§
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 Amazon Web Services Certificate Manager User Guide.