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

RegisterCACertificateRequest

import type { RegisterCACertificateRequest } from "https://aws-api.deno.dev/v0.3/services/iot.ts?docs=full";

The input to the RegisterCACertificate operation.

interface RegisterCACertificateRequest {
allowAutoRegistration?: boolean | null;
caCertificate: string;
registrationConfig?: RegistrationConfig | null;
setAsActive?: boolean | null;
tags?: Tag[] | null;
verificationCertificate: string;
}

§Properties

§
allowAutoRegistration?: boolean | null
[src]

Allows this CA certificate to be used for auto registration of device certificates.

§
caCertificate: string
[src]

The CA certificate.

§
registrationConfig?: RegistrationConfig | null
[src]

Information about the registration configuration.

§
setAsActive?: boolean | null
[src]

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

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

Metadata which can be used to manage the CA certificate.

Note: For URI Request parameters use format: ...key1=value1&key2=value2... For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..." For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."

§
verificationCertificate: string
[src]

The private key verification certificate.