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

RegisterCertificateRequest

import type { RegisterCertificateRequest } from "https://aws-api.deno.dev/v0.3/services/directoryservice.ts?docs=full";
interface RegisterCertificateRequest {
CertificateData: string;
ClientCertAuthSettings?: ClientCertAuthSettings | null;
DirectoryId: string;
Type?: CertificateType | null;
}

§Properties

§
CertificateData: string
[src]

The certificate PEM string that needs to be registered.

§
ClientCertAuthSettings?: ClientCertAuthSettings | null
[src]

A ClientCertAuthSettings object that contains client certificate authentication settings.

§
DirectoryId: string
[src]

The identifier of the directory.

§
Type?: CertificateType | null
[src]

The function that the registered certificate performs. Valid values include ClientLDAPS or ClientCertAuth. The default value is ClientLDAPS.