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.4/services/docdb.ts?docs=full";

A certificate authority (CA) certificate for an Amazon Web Services account.

interface Certificate {
CertificateArn?: string | null;
CertificateIdentifier?: string | null;
CertificateType?: string | null;
Thumbprint?: string | null;
ValidFrom?: Date | number | null;
ValidTill?: Date | number | null;
}

§Properties

§
CertificateArn?: string | null
[src]

The Amazon Resource Name (ARN) for the certificate.

Example: arn:aws:rds:us-east-1::cert:rds-ca-2019

§
CertificateIdentifier?: string | null
[src]

The unique key that identifies a certificate.

Example: rds-ca-2019

§
CertificateType?: string | null
[src]

The type of the certificate.

Example: CA

§
Thumbprint?: string | null
[src]

The thumbprint of the certificate.

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

The starting date-time from which the certificate is valid.

Example: 2019-07-31T17:57:09Z

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

The date-time after which the certificate is no longer valid.

Example: 2024-07-31T17:57:09Z