Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit 950b16a

Browse files
IoT: HTTP rule action
1 parent 69763aa commit 950b16a

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

content/en/user-guide/aws/iot/index.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,10 @@ The certificate is signed by the LocalStack root CA.
127127
result = iot_client.create_keys_and_certificate(setAsActive=True)
128128

129129
# Path to file with saved content `result["certificatePem"]`
130-
cert_file = '...'
130+
cert_file = '...'
131131

132132
# Path to file with saved content `result["keyPair"]["PrivateKey"]`
133-
priv_key_file = '...'
133+
priv_key_file = '...'
134134

135135
tls_ctx_options = awscrt.io.TlsContextOptions.create_client_with_mtls_from_path(
136136
cert_file, priv_key_file
@@ -184,7 +184,13 @@ It is possible to use actions with SQL queries for IoT Topic Rules.
184184

185185
For example, you can use the [`CreateTopicRule`](https://docs.aws.amazon.com/iot/latest/apireference/API_CreateTopicRule.html) operation to define a topic rule with a SQL query `SELECT * FROM 'my/topic' where attr=123` which will execute a trigger whenever a message with attribute `attr=123` is received on the MQTT topic `my/topic`.
186186

187-
Supported triggers include Kinesis, Lambda, SQS, Firehose and DynamoDB v2.
187+
The following actions are supported:
188+
- [Lambda](https://docs.aws.amazon.com/iot/latest/developerguide/lambda-rule-action.html)
189+
- [SQS](https://docs.aws.amazon.com/iot/latest/developerguide/sqs-rule-action.html)
190+
- [Kinesis](https://docs.aws.amazon.com/iot/latest/developerguide/kinesis-rule-action.html)
191+
- [Firehose](https://docs.aws.amazon.com/iot/latest/developerguide/kinesis-firehose-rule-action.html)
192+
- [DynamoDBv2](https://docs.aws.amazon.com/iot/latest/developerguide/dynamodb-v2-rule-action.html)
193+
- [HTTP](https://docs.aws.amazon.com/iot/latest/developerguide/https-rule-action.html) (URL confirmation is not implemented)
188194

189195
## Current Limitations
190196

0 commit comments

Comments
 (0)