iotevents

IoT Events

Analytics & IoTAWS
General

General information about the service.

Description

AWS IoT Events detects and responds to events from IoT sensors.

Service Namespace

AWS::IoTEvents::DetectorModel

ARN Pattern

arn:aws:iotevents:{region}:{account}:detectorModel/{model-name}

References

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

iotevents-

Length

1-128

Valid Characters

Letters, numbers, underscores

Scope

region

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "aws_iotevents_detector_model" "main" {
2 name = "iotevents_${var.environment}"
3 detector_model_definition {
4 initial_state_name = "Normal"
5 states {
6 state_name = "Normal"
7 on_input { events { event_name = "test" } }
8 }
9 }
10 role_arn = aws_iam_role.iotevents.arn
11}
Utilities

Utilities to support app deployment or configuration.