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

CreateKeysAndCertificateResponse

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

The output of the CreateKeysAndCertificate operation.

interface CreateKeysAndCertificateResponse {
certificateArn?: string | null;
certificateId?: string | null;
certificatePem?: string | null;
keyPair?: KeyPair | null;
}

§Properties

§
certificateArn?: string | null
[src]

The ARN of the certificate.

§
certificateId?: string | null
[src]

The ID of the certificate. IoT issues a default subject name for the certificate (for example, IoT Certificate).

§
certificatePem?: string | null
[src]

The certificate data, in PEM format.

§
keyPair?: KeyPair | null
[src]

The generated key pair.