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

CreateProvisioningTemplateRequest

import type { CreateProvisioningTemplateRequest } from "https://aws-api.deno.dev/v0.3/services/iot.ts?docs=full";
interface CreateProvisioningTemplateRequest {
description?: string | null;
enabled?: boolean | null;
preProvisioningHook?: ProvisioningHook | null;
provisioningRoleArn: string;
tags?: Tag[] | null;
templateBody: string;
templateName: string;
}

§Properties

§
description?: string | null
[src]

The description of the fleet provisioning template.

§
enabled?: boolean | null
[src]

True to enable the fleet provisioning template, otherwise false.

§
preProvisioningHook?: ProvisioningHook | null
[src]

Creates a pre-provisioning hook template.

§
provisioningRoleArn: string
[src]

The role ARN for the role associated with the fleet provisioning template. This IoT role grants permission to provision a device.

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

Metadata which can be used to manage the fleet provisioning template.

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..."

§
templateBody: string
[src]

The JSON formatted contents of the fleet provisioning template.

§
templateName: string
[src]

The name of the fleet provisioning template.