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

The input to the RegisterCertificate operation.

interface RegisterCertificateRequest {
caCertificatePem?: string | null;
certificatePem: string;
setAsActive?: boolean | null;
status?: CertificateStatus | null;
}

§Properties

§
caCertificatePem?: string | null
[src]

The CA certificate used to sign the device certificate being registered.

§
certificatePem: string
[src]

The certificate data, in PEM format.

§
setAsActive?: boolean | null
[src]

A boolean value that specifies if the certificate is set to active.

§
status?: CertificateStatus | null
[src]

The status of the register certificate request.