AlarmAction
Specifies one of the following actions to receive notifications when the alarm state changes.
Contents
- dynamoDB
- 
               Defines an action to write to the Amazon DynamoDB table that you created. The standard action payload contains all the information about the detector model instance and the event that triggered the action. You can customize the payload. One column of the DynamoDB table receives all attribute-value pairs in the payload that you specify. You must use expressions for all parameters in DynamoDBAction. The expressions accept literals, operators, functions, references, and substitution templates.Examples- 
                     For literal values, the expressions must contain single quotes. For example, the value for the hashKeyTypeparameter can be'STRING'.
- 
                     For references, you must specify either variables or input values. For example, the value for the hashKeyFieldparameter can be$input.GreenhouseInput.name.
- 
                     For a substitution template, you must use ${}, and the template must be in single quotes. A substitution template can also contain a combination of literals, operators, functions, references, and substitution templates.In the following example, the value for the hashKeyValueparameter uses a substitution template.'${$input.GreenhouseInput.temperature * 6 / 5 + 32} in Fahrenheit'
- 
                     For a string concatenation, you must use +. A string concatenation can also contain a combination of literals, operators, functions, references, and substitution templates.In the following example, the value for the tableNameparameter uses a string concatenation.'GreenhouseTemperatureTable ' + $input.GreenhouseInput.date
 For more information, see Expressions in the Amazon IoT Events Developer Guide. If the defined payload type is a string, DynamoDBActionwrites non-JSON data to the DynamoDB table as binary data. The DynamoDB console displays the data as Base64-encoded text. The value for thepayloadFieldparameter is<payload-field>_raw.Type: DynamoDBAction object Required: No 
- 
                     
- dynamoDBv2
- 
               Defines an action to write to the Amazon DynamoDB table that you created. The default action payload contains all the information about the detector model instance and the event that triggered the action. You can customize the payload. A separate column of the DynamoDB table receives one attribute-value pair in the payload that you specify. You must use expressions for all parameters in DynamoDBv2Action. The expressions accept literals, operators, functions, references, and substitution templates.Examples- 
                     For literal values, the expressions must contain single quotes. For example, the value for the tableNameparameter can be'GreenhouseTemperatureTable'.
- 
                     For references, you must specify either variables or input values. For example, the value for the tableNameparameter can be$variable.ddbtableName.
- 
                     For a substitution template, you must use ${}, and the template must be in single quotes. A substitution template can also contain a combination of literals, operators, functions, references, and substitution templates.In the following example, the value for the contentExpressionparameter inPayloaduses a substitution template.'{\"sensorID\": \"${$input.GreenhouseInput.sensor_id}\", \"temperature\": \"${$input.GreenhouseInput.temperature * 9 / 5 + 32}\"}'
- 
                     For a string concatenation, you must use +. A string concatenation can also contain a combination of literals, operators, functions, references, and substitution templates.In the following example, the value for the tableNameparameter uses a string concatenation.'GreenhouseTemperatureTable ' + $input.GreenhouseInput.date
 For more information, see Expressions in the Amazon IoT Events Developer Guide. The value for the typeparameter inPayloadmust beJSON.Type: DynamoDBv2Action object Required: No 
- 
                     
- firehose
- 
               Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream. Type: FirehoseAction object Required: No 
- iotEvents
- 
               Sends an Amazon IoT Events input, passing in information about the detector model instance and the event that triggered the action. Type: IotEventsAction object Required: No 
- iotSiteWise
- 
               Sends information about the detector model instance and the event that triggered the action to a specified asset property in Amazon IoT SiteWise. You must use expressions for all parameters in IotSiteWiseAction. The expressions accept literals, operators, functions, references, and substitutions templates.Examples- 
                     For literal values, the expressions must contain single quotes. For example, the value for the propertyAliasparameter can be'/company/windfarm/3/turbine/7/temperature'.
- 
                     For references, you must specify either variables or input values. For example, the value for the assetIdparameter can be$input.TurbineInput.assetId1.
- 
                     For a substitution template, you must use ${}, and the template must be in single quotes. A substitution template can also contain a combination of literals, operators, functions, references, and substitution templates.In the following example, the value for the propertyAliasparameter uses a substitution template.'company/windfarm/${$input.TemperatureInput.sensorData.windfarmID}/turbine/ ${$input.TemperatureInput.sensorData.turbineID}/temperature'
 You must specify either propertyAliasor bothassetIdandpropertyIdto identify the target asset property in Amazon IoT SiteWise.For more information, see Expressions in the Amazon IoT Events Developer Guide. Type: IotSiteWiseAction object Required: No 
- 
                     
- iotTopicPublish
- 
               Information required to publish the MQTT message through the Amazon IoT message broker. Type: IotTopicPublishAction object Required: No 
- lambda
- 
               Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action. Type: LambdaAction object Required: No 
- sns
- 
               Information required to publish the Amazon SNS message. Type: SNSTopicPublishAction object Required: No 
- sqs
- 
               Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue. Type: SqsAction object Required: No 
See Also
For more information about using this API in one of the language-specific Amazon SDKs, see the following: