{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-device-management/refs/heads/main/json-schema/iot-device-management-action-list-schema.json", "title": "ActionList", "description": "ActionList schema", "type": "array", "items": { "type": "object", "properties": { "dynamoDB": { "allOf": [ { "$ref": "#/components/schemas/DynamoDBAction" }, { "description": "Write to a DynamoDB table." } ] }, "dynamoDBv2": { "allOf": [ { "$ref": "#/components/schemas/DynamoDBv2Action" }, { "description": "Write to a DynamoDB table. This is a new version of the DynamoDB action. It allows you to write each attribute in an MQTT message payload into a separate DynamoDB column." } ] }, "lambda": { "allOf": [ { "$ref": "#/components/schemas/LambdaAction" }, { "description": "Invoke a Lambda function." } ] }, "sns": { "allOf": [ { "$ref": "#/components/schemas/SnsAction" }, { "description": "Publish to an Amazon SNS topic." } ] }, "sqs": { "allOf": [ { "$ref": "#/components/schemas/SqsAction" }, { "description": "Publish to an Amazon SQS queue." } ] }, "kinesis": { "allOf": [ { "$ref": "#/components/schemas/KinesisAction" }, { "description": "Write data to an Amazon Kinesis stream." } ] }, "republish": { "allOf": [ { "$ref": "#/components/schemas/RepublishAction" }, { "description": "Publish to another MQTT topic." } ] }, "s3": { "allOf": [ { "$ref": "#/components/schemas/S3Action" }, { "description": "Write to an Amazon S3 bucket." } ] }, "firehose": { "allOf": [ { "$ref": "#/components/schemas/FirehoseAction" }, { "description": "Write to an Amazon Kinesis Firehose stream." } ] }, "cloudwatchMetric": { "allOf": [ { "$ref": "#/components/schemas/CloudwatchMetricAction" }, { "description": "Capture a CloudWatch metric." } ] }, "cloudwatchAlarm": { "allOf": [ { "$ref": "#/components/schemas/CloudwatchAlarmAction" }, { "description": "Change the state of a CloudWatch alarm." } ] }, "cloudwatchLogs": { "allOf": [ { "$ref": "#/components/schemas/CloudwatchLogsAction" }, { "description": "Send data to CloudWatch Logs." } ] }, "elasticsearch": { "allOf": [ { "$ref": "#/components/schemas/ElasticsearchAction" }, { "description": "
Write data to an Amazon OpenSearch Service domain.
The Elasticsearch action can only be used by existing rule actions. To create a new rule action or to update an existing rule action, use the OpenSearch rule action instead. For more information, see OpenSearchAction.