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

ImportCertificateRequest

import type { ImportCertificateRequest } from "https://aws-api.deno.dev/v0.3/services/acm.ts?docs=full";
interface ImportCertificateRequest {
Certificate: Uint8Array | string;
CertificateArn?: string | null;
CertificateChain?: Uint8Array | string | null;
PrivateKey: Uint8Array | string;
Tags?: Tag[] | null;
}

§Properties

§
Certificate: Uint8Array | string
[src]

The certificate to import.

§
CertificateArn?: string | null
[src]

The Amazon Resource Name (ARN) of an imported certificate to replace. To import a new certificate, omit this field.

§
CertificateChain?: Uint8Array | string | null
[src]

The PEM encoded certificate chain.

§
PrivateKey: Uint8Array | string
[src]

The private key that matches the public key in the certificate.

§
Tags?: Tag[] | null
[src]

One or more resource tags to associate with the imported certificate.

Note: You cannot apply tags when reimporting a certificate.