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

The SSL certificate that can be used to encrypt connections between the endpoints and the replication instance.

interface Certificate {
CertificateArn?: string | null;
CertificateCreationDate?: Date | number | null;
CertificateIdentifier?: string | null;
CertificateOwner?: string | null;
CertificatePem?: string | null;
CertificateWallet?: Uint8Array | null;
KeyLength?: number | null;
SigningAlgorithm?: string | null;
ValidFromDate?: Date | number | null;
ValidToDate?: Date | number | null;
}

§Properties

§
CertificateArn?: string | null
[src]

The Amazon Resource Name (ARN) for the certificate.

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

The date that the certificate was created.

§
CertificateIdentifier?: string | null
[src]

A customer-assigned name for the certificate. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens.

§
CertificateOwner?: string | null
[src]

The owner of the certificate.

§
CertificatePem?: string | null
[src]

The contents of a .pem file, which contains an X.509 certificate.

§
CertificateWallet?: Uint8Array | null
[src]

The location of an imported Oracle Wallet certificate for use with SSL. Example: filebase64("${path.root}/rds-ca-2019-root.sso")

§
KeyLength?: number | null
[src]

The key length of the cryptographic algorithm being used.

§
SigningAlgorithm?: string | null
[src]

The signing algorithm for the certificate.

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

The beginning date that the certificate is valid.

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

The final date that the certificate is valid.