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

ClientCertificate

import type { ClientCertificate } from "https://aws-api.deno.dev/v0.4/services/apigateway.ts?docs=full";

Represents a client certificate used to configure client-side SSL authentication while sending requests to the integration endpoint.

interface ClientCertificate {
clientCertificateId?: string | null;
createdDate?: Date | number | null;
description?: string | null;
expirationDate?: Date | number | null;
pemEncodedCertificate?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
clientCertificateId?: string | null
[src]

The identifier of the client certificate.

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

The timestamp when the client certificate was created.

§
description?: string | null
[src]

The description of the client certificate.

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

The timestamp when the client certificate will expire.

§
pemEncodedCertificate?: string | null
[src]

The PEM-encoded public key of the client certificate, which can be used to configure certificate authentication in the integration endpoint .

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The collection of tags. Each tag element is associated with a given resource.