Resource: aws_iot_thing_type

Creates and manages an AWS IoT Thing Type.

Example Usage

resource "aws_iot_thing_type" "foo" {
  name = "my_iot_thing"
}

Argument Reference

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import IOT Thing Types using the name. For example:

import {
  to = aws_iot_thing_type.example
  id = "example"
}

Using terraform import, import IOT Thing Types using the name. For example:

% terraform import aws_iot_thing_type.example example