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

A CA certificate for an Amazon Web Services account.

interface Certificate {
CertificateArn?: string | null;
CertificateIdentifier?: string | null;
CertificateType?: string | null;
CustomerOverride?: boolean | null;
CustomerOverrideValidTill?: Date | number | 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.

§
CertificateIdentifier?: string | null
[src]

The unique key that identifies a certificate.

§
CertificateType?: string | null
[src]

The type of the certificate.

§
CustomerOverride?: boolean | null
[src]

Whether there is an override for the default certificate identifier.

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

If there is an override for the default certificate identifier, when the override expires.

§
Thumbprint?: string | null
[src]

The thumbprint of the certificate.

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

The starting date from which the certificate is valid.

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

The final date that the certificate continues to be valid.