Table of Contents
A low-level client representing AWS IoT Events
AWS IoT Events monitors your equipment or device fleets for failures or changes in operation, and triggers actions when such events occur. You can use AWS IoT Events API operations to create, read, update, and delete inputs and detector models, and to list their versions.
import boto3
client = boto3.client('iotevents')
These are the available methods:
Check if an operation can be paginated.
Creates an alarm model to monitor an AWS IoT Events input attribute. You can use the alarm to get notified when the value is outside a specified range. For more information, see Create an alarm model in the AWS IoT Events Developer Guide .
See also: AWS API Documentation
Request Syntax
response = client.create_alarm_model(
alarmModelName='string',
alarmModelDescription='string',
roleArn='string',
tags=[
{
'key': 'string',
'value': 'string'
},
],
key='string',
severity=123,
alarmRule={
'simpleRule': {
'inputProperty': 'string',
'comparisonOperator': 'GREATER'|'GREATER_OR_EQUAL'|'LESS'|'LESS_OR_EQUAL'|'EQUAL'|'NOT_EQUAL',
'threshold': 'string'
}
},
alarmNotification={
'notificationActions': [
{
'action': {
'lambdaAction': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
}
},
'smsConfigurations': [
{
'senderId': 'string',
'additionalMessage': 'string',
'recipients': [
{
'ssoIdentity': {
'identityStoreId': 'string',
'userId': 'string'
}
},
]
},
],
'emailConfigurations': [
{
'from': 'string',
'content': {
'subject': 'string',
'additionalMessage': 'string'
},
'recipients': {
'to': [
{
'ssoIdentity': {
'identityStoreId': 'string',
'userId': 'string'
}
},
]
}
},
]
},
]
},
alarmEventActions={
'alarmActions': [
{
'sns': {
'targetArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotTopicPublish': {
'mqttTopic': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'lambda': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotEvents': {
'inputName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False,
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDB': {
'hashKeyType': 'string',
'hashKeyField': 'string',
'hashKeyValue': 'string',
'rangeKeyType': 'string',
'rangeKeyField': 'string',
'rangeKeyValue': 'string',
'operation': 'string',
'payloadField': 'string',
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDBv2': {
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotSiteWise': {
'entryId': 'string',
'assetId': 'string',
'propertyId': 'string',
'propertyAlias': 'string',
'propertyValue': {
'value': {
'stringValue': 'string',
'integerValue': 'string',
'doubleValue': 'string',
'booleanValue': 'string'
},
'timestamp': {
'timeInSeconds': 'string',
'offsetInNanos': 'string'
},
'quality': 'string'
}
}
},
]
},
alarmCapabilities={
'initializationConfiguration': {
'disabledOnInitialization': True|False
},
'acknowledgeFlow': {
'enabled': True|False
}
}
)
[REQUIRED]
A unique name that helps you identify the alarm model. You can't change this name after you create the alarm model.
[REQUIRED]
The ARN of the IAM role that allows the alarm to perform actions and access AWS resources. For more information, see Amazon Resource Names (ARNs) in the AWS General Reference .
A list of key-value pairs that contain metadata for the alarm model. The tags help you manage the alarm model. For more information, see Tagging your AWS IoT Events resources in the AWS IoT Events Developer Guide .
You can create up to 50 tags for one alarm model.
Metadata that can be used to manage the resource.
The tag's key.
The tag's value.
[REQUIRED]
Defines when your alarm is invoked.
A rule that compares an input property value to a threshold value with a comparison operator.
The value on the left side of the comparison operator. You can specify an AWS IoT Events input attribute as an input property.
The comparison operator.
The value on the right side of the comparison operator. You can enter a number or specify an AWS IoT Events input attribute.
Contains information about one or more notification actions.
Contains the notification settings of an alarm model. The settings apply to all alarms that were created based on this alarm model.
Contains the notification settings of an alarm model. The settings apply to all alarms that were created based on this alarm model.
Specifies an AWS Lambda function to manage alarm notifications. You can create one or use the AWS Lambda function provided by AWS IoT Events .
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
The ARN of the Lambda function that is executed.
You can configure the action payload when you send a message to a Lambda function.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Contains the configuration information of SMS notifications.
Contains the configuration information of SMS notifications.
The sender ID.
The message that you want to send. The message can be up to 200 characters.
Specifies one or more recipients who receive the message.
Warning
You must add the users that receive SMS messages to your AWS SSO store .
The information that identifies the recipient.
The AWS Single Sign-On (AWS SSO) authentication information.
The ID of the AWS SSO identity store.
The user ID.
Contains the configuration information of email notifications.
Contains the configuration information of email notifications.
The email address that sends emails.
Warning
If you use the AWS IoT Events managed AWS Lambda function to manage your emails, you must verify the email address that sends emails in Amazon SES .
Contains the subject and message of an email.
The subject of the email.
The message that you want to send. The message can be up to 200 characters.
Contains the information of one or more recipients who receive the emails.
Warning
You must add the users that receive emails to your AWS SSO store .
Specifies one or more recipients who receive the email.
The information that identifies the recipient.
The AWS Single Sign-On (AWS SSO) authentication information.
The ID of the AWS SSO identity store.
The user ID.
Contains information about one or more alarm actions.
Specifies one or more supported actions to receive notifications when the alarm state changes.
Specifies one of the following actions to receive notifications when the alarm state changes.
Information required to publish the Amazon SNS message.
The ARN of the Amazon SNS target where the message is sent.
You can configure the action payload when you send a message as an Amazon SNS push notification.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Information required to publish the MQTT message through the AWS IoT message broker.
The MQTT topic of the message. You can use a string expression that includes variables ($variable.<variable-name> ) and input values ($input.<input-name>.<path-to-datum> ) as the topic string.
You can configure the action payload when you publish a message to an AWS IoT Core topic.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
The ARN of the Lambda function that is executed.
You can configure the action payload when you send a message to a Lambda function.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends an AWS IoT Events input, passing in information about the detector model instance and the event that triggered the action.
The name of the AWS IoT Events input where the data is sent.
You can configure the action payload when you send a message to an AWS IoT Events input.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.
The URL of the SQS queue where the data is written.
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
You can configure the action payload when you send a message to an Amazon SQS queue.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
The name of the Kinesis Data Firehose delivery stream where the data is written.
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: 'n' (newline), 't' (tab), 'rn' (Windows newline), ',' (comma).
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
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 more information, see Expressions in the AWS IoT Events Developer Guide .
If the defined payload type is a string, DynamoDBAction writes non-JSON data to the DynamoDB table as binary data. The DynamoDB console displays the data as Base64-encoded text. The value for the payloadField parameter is <payload-field>_raw .
The data type for the hash key (also called the partition key). You can specify the following values:
If you don't specify hashKeyType , the default value is 'STRING' .
The name of the hash key (also called the partition key). The hashKeyField value must match the partition key of the target DynamoDB table.
The value of the hash key (also called the partition key).
The data type for the range key (also called the sort key), You can specify the following values:
If you don't specify rangeKeyField , the default value is 'STRING' .
The name of the range key (also called the sort key). The rangeKeyField value must match the sort key of the target DynamoDB table.
The value of the range key (also called the sort key).
The type of operation to perform. You can specify the following values:
If you don't specify this parameter, AWS IoT Events triggers the 'INSERT' operation.
The name of the DynamoDB column that receives the action payload.
If you don't specify this parameter, the name of the DynamoDB column is payload .
The name of the DynamoDB table. The tableName value must match the table name of the target DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
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 more information, see Expressions in the AWS IoT Events Developer Guide .
The value for the type parameter in Payload must be JSON .
The name of the DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to a specified asset property in AWS IoT SiteWise.
You must use expressions for all parameters in IotSiteWiseAction . The expressions accept literals, operators, functions, references, and substitutions templates.
Examples
You must specify either propertyAlias or both assetId and propertyId to identify the target asset property in AWS IoT SiteWise.
For more information, see Expressions in the AWS IoT Events Developer Guide .
A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier.
The ID of the asset that has the specified property.
The ID of the asset property.
The alias of the asset property.
The value to send to the asset property. This value contains timestamp, quality, and value (TQV) information.
The value to send to an asset property.
The asset property value is a string. You must use an expression, and the evaluated result should be a string.
The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.
The asset property value is a double. You must use an expression, and the evaluated result should be a double.
The asset property value is a Boolean value that must be 'TRUE' or 'FALSE' . You must use an expression, and the evaluated result should be a Boolean value.
The timestamp associated with the asset property value. The default is the current event time.
The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.
The nanosecond offset converted from timeInSeconds . The valid range is between 0-999999999.
The quality of the asset property value. The value must be 'GOOD' , 'BAD' , or 'UNCERTAIN' .
Contains the configuration information of alarm state changes.
Specifies the default alarm state. The configuration applies to all alarms that were created based on this alarm model.
The value must be TRUE or FALSE . If FALSE , all alarm instances created based on the alarm model are activated. The default value is TRUE .
Specifies whether to get notified for alarm state changes.
The value must be TRUE or FALSE . If TRUE , you receive a notification when the alarm state changes. You must choose to acknowledge the notification before the alarm state can return to NORMAL . If FALSE , you won't receive notifications. The alarm automatically changes to the NORMAL state when the input property value returns to the specified range.
dict
Response Syntax
{
'creationTime': datetime(2015, 1, 1),
'alarmModelArn': 'string',
'alarmModelVersion': 'string',
'lastUpdateTime': datetime(2015, 1, 1),
'status': 'ACTIVE'|'ACTIVATING'|'INACTIVE'|'FAILED'
}
Response Structure
(dict) --
creationTime (datetime) --
The time the alarm model was created, in the Unix epoch format.
alarmModelArn (string) --
The ARN of the alarm model. For more information, see Amazon Resource Names (ARNs) in the AWS General Reference .
alarmModelVersion (string) --
The version of the alarm model.
lastUpdateTime (datetime) --
The time the alarm model was last updated, in the Unix epoch format.
status (string) --
The status of the alarm model. The status can be one of the following values:
Exceptions
Creates a detector model.
See also: AWS API Documentation
Request Syntax
response = client.create_detector_model(
detectorModelName='string',
detectorModelDefinition={
'states': [
{
'stateName': 'string',
'onInput': {
'events': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotTopicPublish': {
'mqttTopic': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'setTimer': {
'timerName': 'string',
'seconds': 123,
'durationExpression': 'string'
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotEvents': {
'inputName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False,
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDB': {
'hashKeyType': 'string',
'hashKeyField': 'string',
'hashKeyValue': 'string',
'rangeKeyType': 'string',
'rangeKeyField': 'string',
'rangeKeyValue': 'string',
'operation': 'string',
'payloadField': 'string',
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDBv2': {
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotSiteWise': {
'entryId': 'string',
'assetId': 'string',
'propertyId': 'string',
'propertyAlias': 'string',
'propertyValue': {
'value': {
'stringValue': 'string',
'integerValue': 'string',
'doubleValue': 'string',
'booleanValue': 'string'
},
'timestamp': {
'timeInSeconds': 'string',
'offsetInNanos': 'string'
},
'quality': 'string'
}
}
},
]
},
],
'transitionEvents': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotTopicPublish': {
'mqttTopic': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'setTimer': {
'timerName': 'string',
'seconds': 123,
'durationExpression': 'string'
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotEvents': {
'inputName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False,
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDB': {
'hashKeyType': 'string',
'hashKeyField': 'string',
'hashKeyValue': 'string',
'rangeKeyType': 'string',
'rangeKeyField': 'string',
'rangeKeyValue': 'string',
'operation': 'string',
'payloadField': 'string',
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDBv2': {
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotSiteWise': {
'entryId': 'string',
'assetId': 'string',
'propertyId': 'string',
'propertyAlias': 'string',
'propertyValue': {
'value': {
'stringValue': 'string',
'integerValue': 'string',
'doubleValue': 'string',
'booleanValue': 'string'
},
'timestamp': {
'timeInSeconds': 'string',
'offsetInNanos': 'string'
},
'quality': 'string'
}
}
},
],
'nextState': 'string'
},
]
},
'onEnter': {
'events': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotTopicPublish': {
'mqttTopic': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'setTimer': {
'timerName': 'string',
'seconds': 123,
'durationExpression': 'string'
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotEvents': {
'inputName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False,
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDB': {
'hashKeyType': 'string',
'hashKeyField': 'string',
'hashKeyValue': 'string',
'rangeKeyType': 'string',
'rangeKeyField': 'string',
'rangeKeyValue': 'string',
'operation': 'string',
'payloadField': 'string',
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDBv2': {
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotSiteWise': {
'entryId': 'string',
'assetId': 'string',
'propertyId': 'string',
'propertyAlias': 'string',
'propertyValue': {
'value': {
'stringValue': 'string',
'integerValue': 'string',
'doubleValue': 'string',
'booleanValue': 'string'
},
'timestamp': {
'timeInSeconds': 'string',
'offsetInNanos': 'string'
},
'quality': 'string'
}
}
},
]
},
]
},
'onExit': {
'events': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotTopicPublish': {
'mqttTopic': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'setTimer': {
'timerName': 'string',
'seconds': 123,
'durationExpression': 'string'
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotEvents': {
'inputName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False,
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDB': {
'hashKeyType': 'string',
'hashKeyField': 'string',
'hashKeyValue': 'string',
'rangeKeyType': 'string',
'rangeKeyField': 'string',
'rangeKeyValue': 'string',
'operation': 'string',
'payloadField': 'string',
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDBv2': {
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotSiteWise': {
'entryId': 'string',
'assetId': 'string',
'propertyId': 'string',
'propertyAlias': 'string',
'propertyValue': {
'value': {
'stringValue': 'string',
'integerValue': 'string',
'doubleValue': 'string',
'booleanValue': 'string'
},
'timestamp': {
'timeInSeconds': 'string',
'offsetInNanos': 'string'
},
'quality': 'string'
}
}
},
]
},
]
}
},
],
'initialStateName': 'string'
},
detectorModelDescription='string',
key='string',
roleArn='string',
tags=[
{
'key': 'string',
'value': 'string'
},
],
evaluationMethod='BATCH'|'SERIAL'
)
[REQUIRED]
The name of the detector model.
[REQUIRED]
Information that defines how the detectors operate.
Information about the states of the detector.
Information that defines a state of a detector.
The name of the state.
When an input is received and the condition is TRUE, perform the specified actions .
Specifies the actions performed when the condition evaluates to TRUE.
Specifies the actions to be performed when the condition evaluates to TRUE.
The name of the event.
Optional. The Boolean expression that, when TRUE, causes the actions to be performed. If not present, the actions are performed (=TRUE). If the expression result is not a Boolean value, the actions are not performed (=FALSE).
The actions to be performed.
An action to be performed when the condition is TRUE.
Sets a variable to a specified value.
The name of the variable.
The new value of the variable.
Sends an Amazon SNS message.
The ARN of the Amazon SNS target where the message is sent.
You can configure the action payload when you send a message as an Amazon SNS push notification.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Publishes an MQTT message with the given topic to the AWS IoT message broker.
The MQTT topic of the message. You can use a string expression that includes variables ($variable.<variable-name> ) and input values ($input.<input-name>.<path-to-datum> ) as the topic string.
You can configure the action payload when you publish a message to an AWS IoT Core topic.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Information needed to set the timer.
The name of the timer.
The number of seconds until the timer expires. The minimum value is 60 seconds to ensure accuracy. The maximum value is 31622400 seconds.
The duration of the timer, in seconds. You can use a string expression that includes numbers, variables ($variable.<variable-name> ), and input values ($input.<input-name>.<path-to-datum> ) as the duration. The range of the duration is 1-31622400 seconds. To ensure accuracy, the minimum duration is 60 seconds. The evaluated result of the duration is rounded down to the nearest whole number.
Information needed to clear the timer.
The name of the timer to clear.
Information needed to reset the timer.
The name of the timer to reset.
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
The ARN of the Lambda function that is executed.
You can configure the action payload when you send a message to a Lambda function.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends AWS IoT Events input, which passes information about the detector model instance and the event that triggered the action.
The name of the AWS IoT Events input where the data is sent.
You can configure the action payload when you send a message to an AWS IoT Events input.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.
The URL of the SQS queue where the data is written.
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
You can configure the action payload when you send a message to an Amazon SQS queue.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
The name of the Kinesis Data Firehose delivery stream where the data is written.
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: 'n' (newline), 't' (tab), 'rn' (Windows newline), ',' (comma).
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The data type for the hash key (also called the partition key). You can specify the following values:
If you don't specify hashKeyType , the default value is 'STRING' .
The name of the hash key (also called the partition key). The hashKeyField value must match the partition key of the target DynamoDB table.
The value of the hash key (also called the partition key).
The data type for the range key (also called the sort key), You can specify the following values:
If you don't specify rangeKeyField , the default value is 'STRING' .
The name of the range key (also called the sort key). The rangeKeyField value must match the sort key of the target DynamoDB table.
The value of the range key (also called the sort key).
The type of operation to perform. You can specify the following values:
If you don't specify this parameter, AWS IoT Events triggers the 'INSERT' operation.
The name of the DynamoDB column that receives the action payload.
If you don't specify this parameter, the name of the DynamoDB column is payload .
The name of the DynamoDB table. The tableName value must match the table name of the target DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The name of the DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an asset property in AWS IoT SiteWise .
A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier.
The ID of the asset that has the specified property.
The ID of the asset property.
The alias of the asset property.
The value to send to the asset property. This value contains timestamp, quality, and value (TQV) information.
The value to send to an asset property.
The asset property value is a string. You must use an expression, and the evaluated result should be a string.
The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.
The asset property value is a double. You must use an expression, and the evaluated result should be a double.
The asset property value is a Boolean value that must be 'TRUE' or 'FALSE' . You must use an expression, and the evaluated result should be a Boolean value.
The timestamp associated with the asset property value. The default is the current event time.
The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.
The nanosecond offset converted from timeInSeconds . The valid range is between 0-999999999.
The quality of the asset property value. The value must be 'GOOD' , 'BAD' , or 'UNCERTAIN' .
Specifies the actions performed, and the next state entered, when a condition evaluates to TRUE.
Specifies the actions performed and the next state entered when a condition evaluates to TRUE.
The name of the transition event.
Required. A Boolean expression that when TRUE causes the actions to be performed and the nextState to be entered.
The actions to be performed.
An action to be performed when the condition is TRUE.
Sets a variable to a specified value.
The name of the variable.
The new value of the variable.
Sends an Amazon SNS message.
The ARN of the Amazon SNS target where the message is sent.
You can configure the action payload when you send a message as an Amazon SNS push notification.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Publishes an MQTT message with the given topic to the AWS IoT message broker.
The MQTT topic of the message. You can use a string expression that includes variables ($variable.<variable-name> ) and input values ($input.<input-name>.<path-to-datum> ) as the topic string.
You can configure the action payload when you publish a message to an AWS IoT Core topic.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Information needed to set the timer.
The name of the timer.
The number of seconds until the timer expires. The minimum value is 60 seconds to ensure accuracy. The maximum value is 31622400 seconds.
The duration of the timer, in seconds. You can use a string expression that includes numbers, variables ($variable.<variable-name> ), and input values ($input.<input-name>.<path-to-datum> ) as the duration. The range of the duration is 1-31622400 seconds. To ensure accuracy, the minimum duration is 60 seconds. The evaluated result of the duration is rounded down to the nearest whole number.
Information needed to clear the timer.
The name of the timer to clear.
Information needed to reset the timer.
The name of the timer to reset.
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
The ARN of the Lambda function that is executed.
You can configure the action payload when you send a message to a Lambda function.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends AWS IoT Events input, which passes information about the detector model instance and the event that triggered the action.
The name of the AWS IoT Events input where the data is sent.
You can configure the action payload when you send a message to an AWS IoT Events input.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.
The URL of the SQS queue where the data is written.
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
You can configure the action payload when you send a message to an Amazon SQS queue.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
The name of the Kinesis Data Firehose delivery stream where the data is written.
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: 'n' (newline), 't' (tab), 'rn' (Windows newline), ',' (comma).
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The data type for the hash key (also called the partition key). You can specify the following values:
If you don't specify hashKeyType , the default value is 'STRING' .
The name of the hash key (also called the partition key). The hashKeyField value must match the partition key of the target DynamoDB table.
The value of the hash key (also called the partition key).
The data type for the range key (also called the sort key), You can specify the following values:
If you don't specify rangeKeyField , the default value is 'STRING' .
The name of the range key (also called the sort key). The rangeKeyField value must match the sort key of the target DynamoDB table.
The value of the range key (also called the sort key).
The type of operation to perform. You can specify the following values:
If you don't specify this parameter, AWS IoT Events triggers the 'INSERT' operation.
The name of the DynamoDB column that receives the action payload.
If you don't specify this parameter, the name of the DynamoDB column is payload .
The name of the DynamoDB table. The tableName value must match the table name of the target DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The name of the DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an asset property in AWS IoT SiteWise .
A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier.
The ID of the asset that has the specified property.
The ID of the asset property.
The alias of the asset property.
The value to send to the asset property. This value contains timestamp, quality, and value (TQV) information.
The value to send to an asset property.
The asset property value is a string. You must use an expression, and the evaluated result should be a string.
The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.
The asset property value is a double. You must use an expression, and the evaluated result should be a double.
The asset property value is a Boolean value that must be 'TRUE' or 'FALSE' . You must use an expression, and the evaluated result should be a Boolean value.
The timestamp associated with the asset property value. The default is the current event time.
The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.
The nanosecond offset converted from timeInSeconds . The valid range is between 0-999999999.
The quality of the asset property value. The value must be 'GOOD' , 'BAD' , or 'UNCERTAIN' .
The next state to enter.
When entering this state, perform these actions if the condition is TRUE.
Specifies the actions that are performed when the state is entered and the condition is TRUE .
Specifies the actions to be performed when the condition evaluates to TRUE.
The name of the event.
Optional. The Boolean expression that, when TRUE, causes the actions to be performed. If not present, the actions are performed (=TRUE). If the expression result is not a Boolean value, the actions are not performed (=FALSE).
The actions to be performed.
An action to be performed when the condition is TRUE.
Sets a variable to a specified value.
The name of the variable.
The new value of the variable.
Sends an Amazon SNS message.
The ARN of the Amazon SNS target where the message is sent.
You can configure the action payload when you send a message as an Amazon SNS push notification.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Publishes an MQTT message with the given topic to the AWS IoT message broker.
The MQTT topic of the message. You can use a string expression that includes variables ($variable.<variable-name> ) and input values ($input.<input-name>.<path-to-datum> ) as the topic string.
You can configure the action payload when you publish a message to an AWS IoT Core topic.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Information needed to set the timer.
The name of the timer.
The number of seconds until the timer expires. The minimum value is 60 seconds to ensure accuracy. The maximum value is 31622400 seconds.
The duration of the timer, in seconds. You can use a string expression that includes numbers, variables ($variable.<variable-name> ), and input values ($input.<input-name>.<path-to-datum> ) as the duration. The range of the duration is 1-31622400 seconds. To ensure accuracy, the minimum duration is 60 seconds. The evaluated result of the duration is rounded down to the nearest whole number.
Information needed to clear the timer.
The name of the timer to clear.
Information needed to reset the timer.
The name of the timer to reset.
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
The ARN of the Lambda function that is executed.
You can configure the action payload when you send a message to a Lambda function.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends AWS IoT Events input, which passes information about the detector model instance and the event that triggered the action.
The name of the AWS IoT Events input where the data is sent.
You can configure the action payload when you send a message to an AWS IoT Events input.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.
The URL of the SQS queue where the data is written.
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
You can configure the action payload when you send a message to an Amazon SQS queue.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
The name of the Kinesis Data Firehose delivery stream where the data is written.
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: 'n' (newline), 't' (tab), 'rn' (Windows newline), ',' (comma).
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The data type for the hash key (also called the partition key). You can specify the following values:
If you don't specify hashKeyType , the default value is 'STRING' .
The name of the hash key (also called the partition key). The hashKeyField value must match the partition key of the target DynamoDB table.
The value of the hash key (also called the partition key).
The data type for the range key (also called the sort key), You can specify the following values:
If you don't specify rangeKeyField , the default value is 'STRING' .
The name of the range key (also called the sort key). The rangeKeyField value must match the sort key of the target DynamoDB table.
The value of the range key (also called the sort key).
The type of operation to perform. You can specify the following values:
If you don't specify this parameter, AWS IoT Events triggers the 'INSERT' operation.
The name of the DynamoDB column that receives the action payload.
If you don't specify this parameter, the name of the DynamoDB column is payload .
The name of the DynamoDB table. The tableName value must match the table name of the target DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The name of the DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an asset property in AWS IoT SiteWise .
A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier.
The ID of the asset that has the specified property.
The ID of the asset property.
The alias of the asset property.
The value to send to the asset property. This value contains timestamp, quality, and value (TQV) information.
The value to send to an asset property.
The asset property value is a string. You must use an expression, and the evaluated result should be a string.
The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.
The asset property value is a double. You must use an expression, and the evaluated result should be a double.
The asset property value is a Boolean value that must be 'TRUE' or 'FALSE' . You must use an expression, and the evaluated result should be a Boolean value.
The timestamp associated with the asset property value. The default is the current event time.
The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.
The nanosecond offset converted from timeInSeconds . The valid range is between 0-999999999.
The quality of the asset property value. The value must be 'GOOD' , 'BAD' , or 'UNCERTAIN' .
When exiting this state, perform these actions if the specified condition is TRUE .
Specifies the actions that are performed when the state is exited and the condition is TRUE .
Specifies the actions to be performed when the condition evaluates to TRUE.
The name of the event.
Optional. The Boolean expression that, when TRUE, causes the actions to be performed. If not present, the actions are performed (=TRUE). If the expression result is not a Boolean value, the actions are not performed (=FALSE).
The actions to be performed.
An action to be performed when the condition is TRUE.
Sets a variable to a specified value.
The name of the variable.
The new value of the variable.
Sends an Amazon SNS message.
The ARN of the Amazon SNS target where the message is sent.
You can configure the action payload when you send a message as an Amazon SNS push notification.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Publishes an MQTT message with the given topic to the AWS IoT message broker.
The MQTT topic of the message. You can use a string expression that includes variables ($variable.<variable-name> ) and input values ($input.<input-name>.<path-to-datum> ) as the topic string.
You can configure the action payload when you publish a message to an AWS IoT Core topic.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Information needed to set the timer.
The name of the timer.
The number of seconds until the timer expires. The minimum value is 60 seconds to ensure accuracy. The maximum value is 31622400 seconds.
The duration of the timer, in seconds. You can use a string expression that includes numbers, variables ($variable.<variable-name> ), and input values ($input.<input-name>.<path-to-datum> ) as the duration. The range of the duration is 1-31622400 seconds. To ensure accuracy, the minimum duration is 60 seconds. The evaluated result of the duration is rounded down to the nearest whole number.
Information needed to clear the timer.
The name of the timer to clear.
Information needed to reset the timer.
The name of the timer to reset.
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
The ARN of the Lambda function that is executed.
You can configure the action payload when you send a message to a Lambda function.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends AWS IoT Events input, which passes information about the detector model instance and the event that triggered the action.
The name of the AWS IoT Events input where the data is sent.
You can configure the action payload when you send a message to an AWS IoT Events input.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.
The URL of the SQS queue where the data is written.
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
You can configure the action payload when you send a message to an Amazon SQS queue.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
The name of the Kinesis Data Firehose delivery stream where the data is written.
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: 'n' (newline), 't' (tab), 'rn' (Windows newline), ',' (comma).
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The data type for the hash key (also called the partition key). You can specify the following values:
If you don't specify hashKeyType , the default value is 'STRING' .
The name of the hash key (also called the partition key). The hashKeyField value must match the partition key of the target DynamoDB table.
The value of the hash key (also called the partition key).
The data type for the range key (also called the sort key), You can specify the following values:
If you don't specify rangeKeyField , the default value is 'STRING' .
The name of the range key (also called the sort key). The rangeKeyField value must match the sort key of the target DynamoDB table.
The value of the range key (also called the sort key).
The type of operation to perform. You can specify the following values:
If you don't specify this parameter, AWS IoT Events triggers the 'INSERT' operation.
The name of the DynamoDB column that receives the action payload.
If you don't specify this parameter, the name of the DynamoDB column is payload .
The name of the DynamoDB table. The tableName value must match the table name of the target DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The name of the DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an asset property in AWS IoT SiteWise .
A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier.
The ID of the asset that has the specified property.
The ID of the asset property.
The alias of the asset property.
The value to send to the asset property. This value contains timestamp, quality, and value (TQV) information.
The value to send to an asset property.
The asset property value is a string. You must use an expression, and the evaluated result should be a string.
The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.
The asset property value is a double. You must use an expression, and the evaluated result should be a double.
The asset property value is a Boolean value that must be 'TRUE' or 'FALSE' . You must use an expression, and the evaluated result should be a Boolean value.
The timestamp associated with the asset property value. The default is the current event time.
The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.
The nanosecond offset converted from timeInSeconds . The valid range is between 0-999999999.
The quality of the asset property value. The value must be 'GOOD' , 'BAD' , or 'UNCERTAIN' .
The state that is entered at the creation of each detector (instance).
[REQUIRED]
The ARN of the role that grants permission to AWS IoT Events to perform its operations.
Metadata that can be used to manage the detector model.
Metadata that can be used to manage the resource.
The tag's key.
The tag's value.
dict
Response Syntax
{
'detectorModelConfiguration': {
'detectorModelName': 'string',
'detectorModelVersion': 'string',
'detectorModelDescription': 'string',
'detectorModelArn': 'string',
'roleArn': 'string',
'creationTime': datetime(2015, 1, 1),
'lastUpdateTime': datetime(2015, 1, 1),
'status': 'ACTIVE'|'ACTIVATING'|'INACTIVE'|'DEPRECATED'|'DRAFT'|'PAUSED'|'FAILED',
'key': 'string',
'evaluationMethod': 'BATCH'|'SERIAL'
}
}
Response Structure
(dict) --
detectorModelConfiguration (dict) --
Information about how the detector model is configured.
detectorModelName (string) --
The name of the detector model.
detectorModelVersion (string) --
The version of the detector model.
detectorModelDescription (string) --
A brief description of the detector model.
detectorModelArn (string) --
The ARN of the detector model.
roleArn (string) --
The ARN of the role that grants permission to AWS IoT Events to perform its operations.
creationTime (datetime) --
The time the detector model was created.
lastUpdateTime (datetime) --
The time the detector model was last updated.
status (string) --
The status of the detector model.
key (string) --
The value used to identify a detector instance. When a device or system sends input, a new detector instance with a unique key value is created. AWS IoT Events can continue to route input to its corresponding detector instance based on this identifying information.
This parameter uses a JSON-path expression to select the attribute-value pair in the message payload that is used for identification. To route the message to the correct detector instance, the device must send a message payload that contains the same attribute-value.
evaluationMethod (string) --
Information about the order in which events are evaluated and how actions are executed.
Exceptions
Creates an input.
See also: AWS API Documentation
Request Syntax
response = client.create_input(
inputName='string',
inputDescription='string',
inputDefinition={
'attributes': [
{
'jsonPath': 'string'
},
]
},
tags=[
{
'key': 'string',
'value': 'string'
},
]
)
[REQUIRED]
The name you want to give to the input.
[REQUIRED]
The definition of the input.
The attributes from the JSON payload that are made available by the input. Inputs are derived from messages sent to the AWS IoT Events system using BatchPutMessage . Each such message contains a JSON payload, and those attributes (and their paired values) specified here are available for use in the condition expressions used by detectors that monitor this input.
The attributes from the JSON payload that are made available by the input. Inputs are derived from messages sent to the AWS IoT Events system using BatchPutMessage . Each such message contains a JSON payload. Those attributes (and their paired values) specified here are available for use in the condition expressions used by detectors.
An expression that specifies an attribute-value pair in a JSON structure. Use this to specify an attribute from the JSON payload that is made available by the input. Inputs are derived from messages sent to AWS IoT Events (BatchPutMessage ). Each such message contains a JSON payload. The attribute (and its paired value) specified here are available for use in the condition expressions used by detectors.
Syntax: <field-name>.<field-name>...
Metadata that can be used to manage the input.
Metadata that can be used to manage the resource.
The tag's key.
The tag's value.
dict
Response Syntax
{
'inputConfiguration': {
'inputName': 'string',
'inputDescription': 'string',
'inputArn': 'string',
'creationTime': datetime(2015, 1, 1),
'lastUpdateTime': datetime(2015, 1, 1),
'status': 'CREATING'|'UPDATING'|'ACTIVE'|'DELETING'
}
}
Response Structure
(dict) --
inputConfiguration (dict) --
Information about the configuration of the input.
inputName (string) --
The name of the input.
inputDescription (string) --
A brief description of the input.
inputArn (string) --
The ARN of the input.
creationTime (datetime) --
The time the input was created.
lastUpdateTime (datetime) --
The last time the input was updated.
status (string) --
The status of the input.
Exceptions
Deletes an alarm model. Any alarm instances that were created based on this alarm model are also deleted. This action can't be undone.
See also: AWS API Documentation
Request Syntax
response = client.delete_alarm_model(
alarmModelName='string'
)
[REQUIRED]
The name of the alarm model.
{}
Response Structure
Exceptions
Deletes a detector model. Any active instances of the detector model are also deleted.
See also: AWS API Documentation
Request Syntax
response = client.delete_detector_model(
detectorModelName='string'
)
[REQUIRED]
The name of the detector model to be deleted.
{}
Response Structure
Exceptions
Deletes an input.
See also: AWS API Documentation
Request Syntax
response = client.delete_input(
inputName='string'
)
[REQUIRED]
The name of the input to delete.
{}
Response Structure
Exceptions
Retrieves information about an alarm model. If you don't specify a value for the alarmModelVersion parameter, the latest version is returned.
See also: AWS API Documentation
Request Syntax
response = client.describe_alarm_model(
alarmModelName='string',
alarmModelVersion='string'
)
[REQUIRED]
The name of the alarm model.
dict
Response Syntax
{
'creationTime': datetime(2015, 1, 1),
'alarmModelArn': 'string',
'alarmModelVersion': 'string',
'lastUpdateTime': datetime(2015, 1, 1),
'status': 'ACTIVE'|'ACTIVATING'|'INACTIVE'|'FAILED',
'statusMessage': 'string',
'alarmModelName': 'string',
'alarmModelDescription': 'string',
'roleArn': 'string',
'key': 'string',
'severity': 123,
'alarmRule': {
'simpleRule': {
'inputProperty': 'string',
'comparisonOperator': 'GREATER'|'GREATER_OR_EQUAL'|'LESS'|'LESS_OR_EQUAL'|'EQUAL'|'NOT_EQUAL',
'threshold': 'string'
}
},
'alarmNotification': {
'notificationActions': [
{
'action': {
'lambdaAction': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
}
},
'smsConfigurations': [
{
'senderId': 'string',
'additionalMessage': 'string',
'recipients': [
{
'ssoIdentity': {
'identityStoreId': 'string',
'userId': 'string'
}
},
]
},
],
'emailConfigurations': [
{
'from': 'string',
'content': {
'subject': 'string',
'additionalMessage': 'string'
},
'recipients': {
'to': [
{
'ssoIdentity': {
'identityStoreId': 'string',
'userId': 'string'
}
},
]
}
},
]
},
]
},
'alarmEventActions': {
'alarmActions': [
{
'sns': {
'targetArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotTopicPublish': {
'mqttTopic': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'lambda': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotEvents': {
'inputName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False,
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDB': {
'hashKeyType': 'string',
'hashKeyField': 'string',
'hashKeyValue': 'string',
'rangeKeyType': 'string',
'rangeKeyField': 'string',
'rangeKeyValue': 'string',
'operation': 'string',
'payloadField': 'string',
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDBv2': {
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotSiteWise': {
'entryId': 'string',
'assetId': 'string',
'propertyId': 'string',
'propertyAlias': 'string',
'propertyValue': {
'value': {
'stringValue': 'string',
'integerValue': 'string',
'doubleValue': 'string',
'booleanValue': 'string'
},
'timestamp': {
'timeInSeconds': 'string',
'offsetInNanos': 'string'
},
'quality': 'string'
}
}
},
]
},
'alarmCapabilities': {
'initializationConfiguration': {
'disabledOnInitialization': True|False
},
'acknowledgeFlow': {
'enabled': True|False
}
}
}
Response Structure
(dict) --
creationTime (datetime) --
The time the alarm model was created, in the Unix epoch format.
alarmModelArn (string) --
The ARN of the alarm model. For more information, see Amazon Resource Names (ARNs) in the AWS General Reference .
alarmModelVersion (string) --
The version of the alarm model.
lastUpdateTime (datetime) --
The time the alarm model was last updated, in the Unix epoch format.
status (string) --
The status of the alarm model. The status can be one of the following values:
statusMessage (string) --
Contains information about the status of the alarm model.
alarmModelName (string) --
The name of the alarm model.
alarmModelDescription (string) --
The description of the alarm model.
roleArn (string) --
The ARN of the IAM role that allows the alarm to perform actions and access AWS resources. For more information, see Amazon Resource Names (ARNs) in the AWS General Reference .
key (string) --
An input attribute used as a key to create an alarm. AWS IoT Events routes inputs associated with this key to the alarm.
severity (integer) --
A non-negative integer that reflects the severity level of the alarm.
alarmRule (dict) --
Defines when your alarm is invoked.
simpleRule (dict) --
A rule that compares an input property value to a threshold value with a comparison operator.
inputProperty (string) --
The value on the left side of the comparison operator. You can specify an AWS IoT Events input attribute as an input property.
comparisonOperator (string) --
The comparison operator.
threshold (string) --
The value on the right side of the comparison operator. You can enter a number or specify an AWS IoT Events input attribute.
alarmNotification (dict) --
Contains information about one or more notification actions.
notificationActions (list) --
Contains the notification settings of an alarm model. The settings apply to all alarms that were created based on this alarm model.
(dict) --
Contains the notification settings of an alarm model. The settings apply to all alarms that were created based on this alarm model.
action (dict) --
Specifies an AWS Lambda function to manage alarm notifications. You can create one or use the AWS Lambda function provided by AWS IoT Events .
lambdaAction (dict) --
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
functionArn (string) --
The ARN of the Lambda function that is executed.
payload (dict) --
You can configure the action payload when you send a message to a Lambda function.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
smsConfigurations (list) --
Contains the configuration information of SMS notifications.
(dict) --
Contains the configuration information of SMS notifications.
senderId (string) --
The sender ID.
additionalMessage (string) --
The message that you want to send. The message can be up to 200 characters.
recipients (list) --
Specifies one or more recipients who receive the message.
Warning
You must add the users that receive SMS messages to your AWS SSO store .
(dict) --
The information that identifies the recipient.
ssoIdentity (dict) --
The AWS Single Sign-On (AWS SSO) authentication information.
identityStoreId (string) --
The ID of the AWS SSO identity store.
userId (string) --
The user ID.
emailConfigurations (list) --
Contains the configuration information of email notifications.
(dict) --
Contains the configuration information of email notifications.
from (string) --
The email address that sends emails.
Warning
If you use the AWS IoT Events managed AWS Lambda function to manage your emails, you must verify the email address that sends emails in Amazon SES .
content (dict) --
Contains the subject and message of an email.
subject (string) --
The subject of the email.
additionalMessage (string) --
The message that you want to send. The message can be up to 200 characters.
recipients (dict) --
Contains the information of one or more recipients who receive the emails.
Warning
You must add the users that receive emails to your AWS SSO store .
to (list) --
Specifies one or more recipients who receive the email.
(dict) --
The information that identifies the recipient.
ssoIdentity (dict) --
The AWS Single Sign-On (AWS SSO) authentication information.
identityStoreId (string) --
The ID of the AWS SSO identity store.
userId (string) --
The user ID.
alarmEventActions (dict) --
Contains information about one or more alarm actions.
alarmActions (list) --
Specifies one or more supported actions to receive notifications when the alarm state changes.
(dict) --
Specifies one of the following actions to receive notifications when the alarm state changes.
sns (dict) --
Information required to publish the Amazon SNS message.
targetArn (string) --
The ARN of the Amazon SNS target where the message is sent.
payload (dict) --
You can configure the action payload when you send a message as an Amazon SNS push notification.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
iotTopicPublish (dict) --
Information required to publish the MQTT message through the AWS IoT message broker.
mqttTopic (string) --
The MQTT topic of the message. You can use a string expression that includes variables ($variable.<variable-name> ) and input values ($input.<input-name>.<path-to-datum> ) as the topic string.
payload (dict) --
You can configure the action payload when you publish a message to an AWS IoT Core topic.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
lambda (dict) --
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
functionArn (string) --
The ARN of the Lambda function that is executed.
payload (dict) --
You can configure the action payload when you send a message to a Lambda function.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
iotEvents (dict) --
Sends an AWS IoT Events input, passing in information about the detector model instance and the event that triggered the action.
inputName (string) --
The name of the AWS IoT Events input where the data is sent.
payload (dict) --
You can configure the action payload when you send a message to an AWS IoT Events input.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
sqs (dict) --
Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.
queueUrl (string) --
The URL of the SQS queue where the data is written.
useBase64 (boolean) --
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
payload (dict) --
You can configure the action payload when you send a message to an Amazon SQS queue.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
firehose (dict) --
Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
deliveryStreamName (string) --
The name of the Kinesis Data Firehose delivery stream where the data is written.
separator (string) --
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: 'n' (newline), 't' (tab), 'rn' (Windows newline), ',' (comma).
payload (dict) --
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
dynamoDB (dict) --
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 more information, see Expressions in the AWS IoT Events Developer Guide .
If the defined payload type is a string, DynamoDBAction writes non-JSON data to the DynamoDB table as binary data. The DynamoDB console displays the data as Base64-encoded text. The value for the payloadField parameter is <payload-field>_raw .
hashKeyType (string) --
The data type for the hash key (also called the partition key). You can specify the following values:
If you don't specify hashKeyType , the default value is 'STRING' .
hashKeyField (string) --
The name of the hash key (also called the partition key). The hashKeyField value must match the partition key of the target DynamoDB table.
hashKeyValue (string) --
The value of the hash key (also called the partition key).
rangeKeyType (string) --
The data type for the range key (also called the sort key), You can specify the following values:
If you don't specify rangeKeyField , the default value is 'STRING' .
rangeKeyField (string) --
The name of the range key (also called the sort key). The rangeKeyField value must match the sort key of the target DynamoDB table.
rangeKeyValue (string) --
The value of the range key (also called the sort key).
operation (string) --
The type of operation to perform. You can specify the following values:
If you don't specify this parameter, AWS IoT Events triggers the 'INSERT' operation.
payloadField (string) --
The name of the DynamoDB column that receives the action payload.
If you don't specify this parameter, the name of the DynamoDB column is payload .
tableName (string) --
The name of the DynamoDB table. The tableName value must match the table name of the target DynamoDB table.
payload (dict) --
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
dynamoDBv2 (dict) --
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 more information, see Expressions in the AWS IoT Events Developer Guide .
The value for the type parameter in Payload must be JSON .
tableName (string) --
The name of the DynamoDB table.
payload (dict) --
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
iotSiteWise (dict) --
Sends information about the detector model instance and the event that triggered the action to a specified asset property in AWS IoT SiteWise.
You must use expressions for all parameters in IotSiteWiseAction . The expressions accept literals, operators, functions, references, and substitutions templates.
Examples
You must specify either propertyAlias or both assetId and propertyId to identify the target asset property in AWS IoT SiteWise.
For more information, see Expressions in the AWS IoT Events Developer Guide .
entryId (string) --
A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier.
assetId (string) --
The ID of the asset that has the specified property.
propertyId (string) --
The ID of the asset property.
propertyAlias (string) --
The alias of the asset property.
propertyValue (dict) --
The value to send to the asset property. This value contains timestamp, quality, and value (TQV) information.
value (dict) --
The value to send to an asset property.
stringValue (string) --
The asset property value is a string. You must use an expression, and the evaluated result should be a string.
integerValue (string) --
The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.
doubleValue (string) --
The asset property value is a double. You must use an expression, and the evaluated result should be a double.
booleanValue (string) --
The asset property value is a Boolean value that must be 'TRUE' or 'FALSE' . You must use an expression, and the evaluated result should be a Boolean value.
timestamp (dict) --
The timestamp associated with the asset property value. The default is the current event time.
timeInSeconds (string) --
The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.
offsetInNanos (string) --
The nanosecond offset converted from timeInSeconds . The valid range is between 0-999999999.
quality (string) --
The quality of the asset property value. The value must be 'GOOD' , 'BAD' , or 'UNCERTAIN' .
alarmCapabilities (dict) --
Contains the configuration information of alarm state changes.
initializationConfiguration (dict) --
Specifies the default alarm state. The configuration applies to all alarms that were created based on this alarm model.
disabledOnInitialization (boolean) --
The value must be TRUE or FALSE . If FALSE , all alarm instances created based on the alarm model are activated. The default value is TRUE .
acknowledgeFlow (dict) --
Specifies whether to get notified for alarm state changes.
enabled (boolean) --
The value must be TRUE or FALSE . If TRUE , you receive a notification when the alarm state changes. You must choose to acknowledge the notification before the alarm state can return to NORMAL . If FALSE , you won't receive notifications. The alarm automatically changes to the NORMAL state when the input property value returns to the specified range.
Exceptions
Describes a detector model. If the version parameter is not specified, information about the latest version is returned.
See also: AWS API Documentation
Request Syntax
response = client.describe_detector_model(
detectorModelName='string',
detectorModelVersion='string'
)
[REQUIRED]
The name of the detector model.
dict
Response Syntax
{
'detectorModel': {
'detectorModelDefinition': {
'states': [
{
'stateName': 'string',
'onInput': {
'events': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotTopicPublish': {
'mqttTopic': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'setTimer': {
'timerName': 'string',
'seconds': 123,
'durationExpression': 'string'
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotEvents': {
'inputName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False,
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDB': {
'hashKeyType': 'string',
'hashKeyField': 'string',
'hashKeyValue': 'string',
'rangeKeyType': 'string',
'rangeKeyField': 'string',
'rangeKeyValue': 'string',
'operation': 'string',
'payloadField': 'string',
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDBv2': {
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotSiteWise': {
'entryId': 'string',
'assetId': 'string',
'propertyId': 'string',
'propertyAlias': 'string',
'propertyValue': {
'value': {
'stringValue': 'string',
'integerValue': 'string',
'doubleValue': 'string',
'booleanValue': 'string'
},
'timestamp': {
'timeInSeconds': 'string',
'offsetInNanos': 'string'
},
'quality': 'string'
}
}
},
]
},
],
'transitionEvents': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotTopicPublish': {
'mqttTopic': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'setTimer': {
'timerName': 'string',
'seconds': 123,
'durationExpression': 'string'
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotEvents': {
'inputName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False,
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDB': {
'hashKeyType': 'string',
'hashKeyField': 'string',
'hashKeyValue': 'string',
'rangeKeyType': 'string',
'rangeKeyField': 'string',
'rangeKeyValue': 'string',
'operation': 'string',
'payloadField': 'string',
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDBv2': {
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotSiteWise': {
'entryId': 'string',
'assetId': 'string',
'propertyId': 'string',
'propertyAlias': 'string',
'propertyValue': {
'value': {
'stringValue': 'string',
'integerValue': 'string',
'doubleValue': 'string',
'booleanValue': 'string'
},
'timestamp': {
'timeInSeconds': 'string',
'offsetInNanos': 'string'
},
'quality': 'string'
}
}
},
],
'nextState': 'string'
},
]
},
'onEnter': {
'events': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotTopicPublish': {
'mqttTopic': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'setTimer': {
'timerName': 'string',
'seconds': 123,
'durationExpression': 'string'
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotEvents': {
'inputName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False,
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDB': {
'hashKeyType': 'string',
'hashKeyField': 'string',
'hashKeyValue': 'string',
'rangeKeyType': 'string',
'rangeKeyField': 'string',
'rangeKeyValue': 'string',
'operation': 'string',
'payloadField': 'string',
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDBv2': {
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotSiteWise': {
'entryId': 'string',
'assetId': 'string',
'propertyId': 'string',
'propertyAlias': 'string',
'propertyValue': {
'value': {
'stringValue': 'string',
'integerValue': 'string',
'doubleValue': 'string',
'booleanValue': 'string'
},
'timestamp': {
'timeInSeconds': 'string',
'offsetInNanos': 'string'
},
'quality': 'string'
}
}
},
]
},
]
},
'onExit': {
'events': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotTopicPublish': {
'mqttTopic': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'setTimer': {
'timerName': 'string',
'seconds': 123,
'durationExpression': 'string'
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotEvents': {
'inputName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False,
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDB': {
'hashKeyType': 'string',
'hashKeyField': 'string',
'hashKeyValue': 'string',
'rangeKeyType': 'string',
'rangeKeyField': 'string',
'rangeKeyValue': 'string',
'operation': 'string',
'payloadField': 'string',
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDBv2': {
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotSiteWise': {
'entryId': 'string',
'assetId': 'string',
'propertyId': 'string',
'propertyAlias': 'string',
'propertyValue': {
'value': {
'stringValue': 'string',
'integerValue': 'string',
'doubleValue': 'string',
'booleanValue': 'string'
},
'timestamp': {
'timeInSeconds': 'string',
'offsetInNanos': 'string'
},
'quality': 'string'
}
}
},
]
},
]
}
},
],
'initialStateName': 'string'
},
'detectorModelConfiguration': {
'detectorModelName': 'string',
'detectorModelVersion': 'string',
'detectorModelDescription': 'string',
'detectorModelArn': 'string',
'roleArn': 'string',
'creationTime': datetime(2015, 1, 1),
'lastUpdateTime': datetime(2015, 1, 1),
'status': 'ACTIVE'|'ACTIVATING'|'INACTIVE'|'DEPRECATED'|'DRAFT'|'PAUSED'|'FAILED',
'key': 'string',
'evaluationMethod': 'BATCH'|'SERIAL'
}
}
}
Response Structure
(dict) --
detectorModel (dict) --
Information about the detector model.
detectorModelDefinition (dict) --
Information that defines how a detector operates.
states (list) --
Information about the states of the detector.
(dict) --
Information that defines a state of a detector.
stateName (string) --
The name of the state.
onInput (dict) --
When an input is received and the condition is TRUE, perform the specified actions .
events (list) --
Specifies the actions performed when the condition evaluates to TRUE.
(dict) --
Specifies the actions to be performed when the condition evaluates to TRUE.
eventName (string) --
The name of the event.
condition (string) --
Optional. The Boolean expression that, when TRUE, causes the actions to be performed. If not present, the actions are performed (=TRUE). If the expression result is not a Boolean value, the actions are not performed (=FALSE).
actions (list) --
The actions to be performed.
(dict) --
An action to be performed when the condition is TRUE.
setVariable (dict) --
Sets a variable to a specified value.
variableName (string) --
The name of the variable.
value (string) --
The new value of the variable.
sns (dict) --
Sends an Amazon SNS message.
targetArn (string) --
The ARN of the Amazon SNS target where the message is sent.
payload (dict) --
You can configure the action payload when you send a message as an Amazon SNS push notification.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
iotTopicPublish (dict) --
Publishes an MQTT message with the given topic to the AWS IoT message broker.
mqttTopic (string) --
The MQTT topic of the message. You can use a string expression that includes variables ($variable.<variable-name> ) and input values ($input.<input-name>.<path-to-datum> ) as the topic string.
payload (dict) --
You can configure the action payload when you publish a message to an AWS IoT Core topic.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
setTimer (dict) --
Information needed to set the timer.
timerName (string) --
The name of the timer.
seconds (integer) --
The number of seconds until the timer expires. The minimum value is 60 seconds to ensure accuracy. The maximum value is 31622400 seconds.
durationExpression (string) --
The duration of the timer, in seconds. You can use a string expression that includes numbers, variables ($variable.<variable-name> ), and input values ($input.<input-name>.<path-to-datum> ) as the duration. The range of the duration is 1-31622400 seconds. To ensure accuracy, the minimum duration is 60 seconds. The evaluated result of the duration is rounded down to the nearest whole number.
clearTimer (dict) --
Information needed to clear the timer.
timerName (string) --
The name of the timer to clear.
resetTimer (dict) --
Information needed to reset the timer.
timerName (string) --
The name of the timer to reset.
lambda (dict) --
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
functionArn (string) --
The ARN of the Lambda function that is executed.
payload (dict) --
You can configure the action payload when you send a message to a Lambda function.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
iotEvents (dict) --
Sends AWS IoT Events input, which passes information about the detector model instance and the event that triggered the action.
inputName (string) --
The name of the AWS IoT Events input where the data is sent.
payload (dict) --
You can configure the action payload when you send a message to an AWS IoT Events input.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
sqs (dict) --
Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.
queueUrl (string) --
The URL of the SQS queue where the data is written.
useBase64 (boolean) --
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
payload (dict) --
You can configure the action payload when you send a message to an Amazon SQS queue.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
firehose (dict) --
Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
deliveryStreamName (string) --
The name of the Kinesis Data Firehose delivery stream where the data is written.
separator (string) --
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: 'n' (newline), 't' (tab), 'rn' (Windows newline), ',' (comma).
payload (dict) --
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
dynamoDB (dict) --
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
hashKeyType (string) --
The data type for the hash key (also called the partition key). You can specify the following values:
If you don't specify hashKeyType , the default value is 'STRING' .
hashKeyField (string) --
The name of the hash key (also called the partition key). The hashKeyField value must match the partition key of the target DynamoDB table.
hashKeyValue (string) --
The value of the hash key (also called the partition key).
rangeKeyType (string) --
The data type for the range key (also called the sort key), You can specify the following values:
If you don't specify rangeKeyField , the default value is 'STRING' .
rangeKeyField (string) --
The name of the range key (also called the sort key). The rangeKeyField value must match the sort key of the target DynamoDB table.
rangeKeyValue (string) --
The value of the range key (also called the sort key).
operation (string) --
The type of operation to perform. You can specify the following values:
If you don't specify this parameter, AWS IoT Events triggers the 'INSERT' operation.
payloadField (string) --
The name of the DynamoDB column that receives the action payload.
If you don't specify this parameter, the name of the DynamoDB column is payload .
tableName (string) --
The name of the DynamoDB table. The tableName value must match the table name of the target DynamoDB table.
payload (dict) --
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
dynamoDBv2 (dict) --
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
tableName (string) --
The name of the DynamoDB table.
payload (dict) --
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
iotSiteWise (dict) --
Sends information about the detector model instance and the event that triggered the action to an asset property in AWS IoT SiteWise .
entryId (string) --
A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier.
assetId (string) --
The ID of the asset that has the specified property.
propertyId (string) --
The ID of the asset property.
propertyAlias (string) --
The alias of the asset property.
propertyValue (dict) --
The value to send to the asset property. This value contains timestamp, quality, and value (TQV) information.
value (dict) --
The value to send to an asset property.
stringValue (string) --
The asset property value is a string. You must use an expression, and the evaluated result should be a string.
integerValue (string) --
The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.
doubleValue (string) --
The asset property value is a double. You must use an expression, and the evaluated result should be a double.
booleanValue (string) --
The asset property value is a Boolean value that must be 'TRUE' or 'FALSE' . You must use an expression, and the evaluated result should be a Boolean value.
timestamp (dict) --
The timestamp associated with the asset property value. The default is the current event time.
timeInSeconds (string) --
The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.
offsetInNanos (string) --
The nanosecond offset converted from timeInSeconds . The valid range is between 0-999999999.
quality (string) --
The quality of the asset property value. The value must be 'GOOD' , 'BAD' , or 'UNCERTAIN' .
transitionEvents (list) --
Specifies the actions performed, and the next state entered, when a condition evaluates to TRUE.
(dict) --
Specifies the actions performed and the next state entered when a condition evaluates to TRUE.
eventName (string) --
The name of the transition event.
condition (string) --
Required. A Boolean expression that when TRUE causes the actions to be performed and the nextState to be entered.
actions (list) --
The actions to be performed.
(dict) --
An action to be performed when the condition is TRUE.
setVariable (dict) --
Sets a variable to a specified value.
variableName (string) --
The name of the variable.
value (string) --
The new value of the variable.
sns (dict) --
Sends an Amazon SNS message.
targetArn (string) --
The ARN of the Amazon SNS target where the message is sent.
payload (dict) --
You can configure the action payload when you send a message as an Amazon SNS push notification.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
iotTopicPublish (dict) --
Publishes an MQTT message with the given topic to the AWS IoT message broker.
mqttTopic (string) --
The MQTT topic of the message. You can use a string expression that includes variables ($variable.<variable-name> ) and input values ($input.<input-name>.<path-to-datum> ) as the topic string.
payload (dict) --
You can configure the action payload when you publish a message to an AWS IoT Core topic.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
setTimer (dict) --
Information needed to set the timer.
timerName (string) --
The name of the timer.
seconds (integer) --
The number of seconds until the timer expires. The minimum value is 60 seconds to ensure accuracy. The maximum value is 31622400 seconds.
durationExpression (string) --
The duration of the timer, in seconds. You can use a string expression that includes numbers, variables ($variable.<variable-name> ), and input values ($input.<input-name>.<path-to-datum> ) as the duration. The range of the duration is 1-31622400 seconds. To ensure accuracy, the minimum duration is 60 seconds. The evaluated result of the duration is rounded down to the nearest whole number.
clearTimer (dict) --
Information needed to clear the timer.
timerName (string) --
The name of the timer to clear.
resetTimer (dict) --
Information needed to reset the timer.
timerName (string) --
The name of the timer to reset.
lambda (dict) --
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
functionArn (string) --
The ARN of the Lambda function that is executed.
payload (dict) --
You can configure the action payload when you send a message to a Lambda function.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
iotEvents (dict) --
Sends AWS IoT Events input, which passes information about the detector model instance and the event that triggered the action.
inputName (string) --
The name of the AWS IoT Events input where the data is sent.
payload (dict) --
You can configure the action payload when you send a message to an AWS IoT Events input.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
sqs (dict) --
Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.
queueUrl (string) --
The URL of the SQS queue where the data is written.
useBase64 (boolean) --
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
payload (dict) --
You can configure the action payload when you send a message to an Amazon SQS queue.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
firehose (dict) --
Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
deliveryStreamName (string) --
The name of the Kinesis Data Firehose delivery stream where the data is written.
separator (string) --
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: 'n' (newline), 't' (tab), 'rn' (Windows newline), ',' (comma).
payload (dict) --
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
dynamoDB (dict) --
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
hashKeyType (string) --
The data type for the hash key (also called the partition key). You can specify the following values:
If you don't specify hashKeyType , the default value is 'STRING' .
hashKeyField (string) --
The name of the hash key (also called the partition key). The hashKeyField value must match the partition key of the target DynamoDB table.
hashKeyValue (string) --
The value of the hash key (also called the partition key).
rangeKeyType (string) --
The data type for the range key (also called the sort key), You can specify the following values:
If you don't specify rangeKeyField , the default value is 'STRING' .
rangeKeyField (string) --
The name of the range key (also called the sort key). The rangeKeyField value must match the sort key of the target DynamoDB table.
rangeKeyValue (string) --
The value of the range key (also called the sort key).
operation (string) --
The type of operation to perform. You can specify the following values:
If you don't specify this parameter, AWS IoT Events triggers the 'INSERT' operation.
payloadField (string) --
The name of the DynamoDB column that receives the action payload.
If you don't specify this parameter, the name of the DynamoDB column is payload .
tableName (string) --
The name of the DynamoDB table. The tableName value must match the table name of the target DynamoDB table.
payload (dict) --
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
dynamoDBv2 (dict) --
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
tableName (string) --
The name of the DynamoDB table.
payload (dict) --
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
iotSiteWise (dict) --
Sends information about the detector model instance and the event that triggered the action to an asset property in AWS IoT SiteWise .
entryId (string) --
A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier.
assetId (string) --
The ID of the asset that has the specified property.
propertyId (string) --
The ID of the asset property.
propertyAlias (string) --
The alias of the asset property.
propertyValue (dict) --
The value to send to the asset property. This value contains timestamp, quality, and value (TQV) information.
value (dict) --
The value to send to an asset property.
stringValue (string) --
The asset property value is a string. You must use an expression, and the evaluated result should be a string.
integerValue (string) --
The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.
doubleValue (string) --
The asset property value is a double. You must use an expression, and the evaluated result should be a double.
booleanValue (string) --
The asset property value is a Boolean value that must be 'TRUE' or 'FALSE' . You must use an expression, and the evaluated result should be a Boolean value.
timestamp (dict) --
The timestamp associated with the asset property value. The default is the current event time.
timeInSeconds (string) --
The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.
offsetInNanos (string) --
The nanosecond offset converted from timeInSeconds . The valid range is between 0-999999999.
quality (string) --
The quality of the asset property value. The value must be 'GOOD' , 'BAD' , or 'UNCERTAIN' .
nextState (string) --
The next state to enter.
onEnter (dict) --
When entering this state, perform these actions if the condition is TRUE.
events (list) --
Specifies the actions that are performed when the state is entered and the condition is TRUE .
(dict) --
Specifies the actions to be performed when the condition evaluates to TRUE.
eventName (string) --
The name of the event.
condition (string) --
Optional. The Boolean expression that, when TRUE, causes the actions to be performed. If not present, the actions are performed (=TRUE). If the expression result is not a Boolean value, the actions are not performed (=FALSE).
actions (list) --
The actions to be performed.
(dict) --
An action to be performed when the condition is TRUE.
setVariable (dict) --
Sets a variable to a specified value.
variableName (string) --
The name of the variable.
value (string) --
The new value of the variable.
sns (dict) --
Sends an Amazon SNS message.
targetArn (string) --
The ARN of the Amazon SNS target where the message is sent.
payload (dict) --
You can configure the action payload when you send a message as an Amazon SNS push notification.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
iotTopicPublish (dict) --
Publishes an MQTT message with the given topic to the AWS IoT message broker.
mqttTopic (string) --
The MQTT topic of the message. You can use a string expression that includes variables ($variable.<variable-name> ) and input values ($input.<input-name>.<path-to-datum> ) as the topic string.
payload (dict) --
You can configure the action payload when you publish a message to an AWS IoT Core topic.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
setTimer (dict) --
Information needed to set the timer.
timerName (string) --
The name of the timer.
seconds (integer) --
The number of seconds until the timer expires. The minimum value is 60 seconds to ensure accuracy. The maximum value is 31622400 seconds.
durationExpression (string) --
The duration of the timer, in seconds. You can use a string expression that includes numbers, variables ($variable.<variable-name> ), and input values ($input.<input-name>.<path-to-datum> ) as the duration. The range of the duration is 1-31622400 seconds. To ensure accuracy, the minimum duration is 60 seconds. The evaluated result of the duration is rounded down to the nearest whole number.
clearTimer (dict) --
Information needed to clear the timer.
timerName (string) --
The name of the timer to clear.
resetTimer (dict) --
Information needed to reset the timer.
timerName (string) --
The name of the timer to reset.
lambda (dict) --
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
functionArn (string) --
The ARN of the Lambda function that is executed.
payload (dict) --
You can configure the action payload when you send a message to a Lambda function.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
iotEvents (dict) --
Sends AWS IoT Events input, which passes information about the detector model instance and the event that triggered the action.
inputName (string) --
The name of the AWS IoT Events input where the data is sent.
payload (dict) --
You can configure the action payload when you send a message to an AWS IoT Events input.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
sqs (dict) --
Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.
queueUrl (string) --
The URL of the SQS queue where the data is written.
useBase64 (boolean) --
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
payload (dict) --
You can configure the action payload when you send a message to an Amazon SQS queue.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
firehose (dict) --
Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
deliveryStreamName (string) --
The name of the Kinesis Data Firehose delivery stream where the data is written.
separator (string) --
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: 'n' (newline), 't' (tab), 'rn' (Windows newline), ',' (comma).
payload (dict) --
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
dynamoDB (dict) --
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
hashKeyType (string) --
The data type for the hash key (also called the partition key). You can specify the following values:
If you don't specify hashKeyType , the default value is 'STRING' .
hashKeyField (string) --
The name of the hash key (also called the partition key). The hashKeyField value must match the partition key of the target DynamoDB table.
hashKeyValue (string) --
The value of the hash key (also called the partition key).
rangeKeyType (string) --
The data type for the range key (also called the sort key), You can specify the following values:
If you don't specify rangeKeyField , the default value is 'STRING' .
rangeKeyField (string) --
The name of the range key (also called the sort key). The rangeKeyField value must match the sort key of the target DynamoDB table.
rangeKeyValue (string) --
The value of the range key (also called the sort key).
operation (string) --
The type of operation to perform. You can specify the following values:
If you don't specify this parameter, AWS IoT Events triggers the 'INSERT' operation.
payloadField (string) --
The name of the DynamoDB column that receives the action payload.
If you don't specify this parameter, the name of the DynamoDB column is payload .
tableName (string) --
The name of the DynamoDB table. The tableName value must match the table name of the target DynamoDB table.
payload (dict) --
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
dynamoDBv2 (dict) --
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
tableName (string) --
The name of the DynamoDB table.
payload (dict) --
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
iotSiteWise (dict) --
Sends information about the detector model instance and the event that triggered the action to an asset property in AWS IoT SiteWise .
entryId (string) --
A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier.
assetId (string) --
The ID of the asset that has the specified property.
propertyId (string) --
The ID of the asset property.
propertyAlias (string) --
The alias of the asset property.
propertyValue (dict) --
The value to send to the asset property. This value contains timestamp, quality, and value (TQV) information.
value (dict) --
The value to send to an asset property.
stringValue (string) --
The asset property value is a string. You must use an expression, and the evaluated result should be a string.
integerValue (string) --
The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.
doubleValue (string) --
The asset property value is a double. You must use an expression, and the evaluated result should be a double.
booleanValue (string) --
The asset property value is a Boolean value that must be 'TRUE' or 'FALSE' . You must use an expression, and the evaluated result should be a Boolean value.
timestamp (dict) --
The timestamp associated with the asset property value. The default is the current event time.
timeInSeconds (string) --
The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.
offsetInNanos (string) --
The nanosecond offset converted from timeInSeconds . The valid range is between 0-999999999.
quality (string) --
The quality of the asset property value. The value must be 'GOOD' , 'BAD' , or 'UNCERTAIN' .
onExit (dict) --
When exiting this state, perform these actions if the specified condition is TRUE .
events (list) --
Specifies the actions that are performed when the state is exited and the condition is TRUE .
(dict) --
Specifies the actions to be performed when the condition evaluates to TRUE.
eventName (string) --
The name of the event.
condition (string) --
Optional. The Boolean expression that, when TRUE, causes the actions to be performed. If not present, the actions are performed (=TRUE). If the expression result is not a Boolean value, the actions are not performed (=FALSE).
actions (list) --
The actions to be performed.
(dict) --
An action to be performed when the condition is TRUE.
setVariable (dict) --
Sets a variable to a specified value.
variableName (string) --
The name of the variable.
value (string) --
The new value of the variable.
sns (dict) --
Sends an Amazon SNS message.
targetArn (string) --
The ARN of the Amazon SNS target where the message is sent.
payload (dict) --
You can configure the action payload when you send a message as an Amazon SNS push notification.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
iotTopicPublish (dict) --
Publishes an MQTT message with the given topic to the AWS IoT message broker.
mqttTopic (string) --
The MQTT topic of the message. You can use a string expression that includes variables ($variable.<variable-name> ) and input values ($input.<input-name>.<path-to-datum> ) as the topic string.
payload (dict) --
You can configure the action payload when you publish a message to an AWS IoT Core topic.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
setTimer (dict) --
Information needed to set the timer.
timerName (string) --
The name of the timer.
seconds (integer) --
The number of seconds until the timer expires. The minimum value is 60 seconds to ensure accuracy. The maximum value is 31622400 seconds.
durationExpression (string) --
The duration of the timer, in seconds. You can use a string expression that includes numbers, variables ($variable.<variable-name> ), and input values ($input.<input-name>.<path-to-datum> ) as the duration. The range of the duration is 1-31622400 seconds. To ensure accuracy, the minimum duration is 60 seconds. The evaluated result of the duration is rounded down to the nearest whole number.
clearTimer (dict) --
Information needed to clear the timer.
timerName (string) --
The name of the timer to clear.
resetTimer (dict) --
Information needed to reset the timer.
timerName (string) --
The name of the timer to reset.
lambda (dict) --
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
functionArn (string) --
The ARN of the Lambda function that is executed.
payload (dict) --
You can configure the action payload when you send a message to a Lambda function.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
iotEvents (dict) --
Sends AWS IoT Events input, which passes information about the detector model instance and the event that triggered the action.
inputName (string) --
The name of the AWS IoT Events input where the data is sent.
payload (dict) --
You can configure the action payload when you send a message to an AWS IoT Events input.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
sqs (dict) --
Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.
queueUrl (string) --
The URL of the SQS queue where the data is written.
useBase64 (boolean) --
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
payload (dict) --
You can configure the action payload when you send a message to an Amazon SQS queue.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
firehose (dict) --
Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
deliveryStreamName (string) --
The name of the Kinesis Data Firehose delivery stream where the data is written.
separator (string) --
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: 'n' (newline), 't' (tab), 'rn' (Windows newline), ',' (comma).
payload (dict) --
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
dynamoDB (dict) --
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
hashKeyType (string) --
The data type for the hash key (also called the partition key). You can specify the following values:
If you don't specify hashKeyType , the default value is 'STRING' .
hashKeyField (string) --
The name of the hash key (also called the partition key). The hashKeyField value must match the partition key of the target DynamoDB table.
hashKeyValue (string) --
The value of the hash key (also called the partition key).
rangeKeyType (string) --
The data type for the range key (also called the sort key), You can specify the following values:
If you don't specify rangeKeyField , the default value is 'STRING' .
rangeKeyField (string) --
The name of the range key (also called the sort key). The rangeKeyField value must match the sort key of the target DynamoDB table.
rangeKeyValue (string) --
The value of the range key (also called the sort key).
operation (string) --
The type of operation to perform. You can specify the following values:
If you don't specify this parameter, AWS IoT Events triggers the 'INSERT' operation.
payloadField (string) --
The name of the DynamoDB column that receives the action payload.
If you don't specify this parameter, the name of the DynamoDB column is payload .
tableName (string) --
The name of the DynamoDB table. The tableName value must match the table name of the target DynamoDB table.
payload (dict) --
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
dynamoDBv2 (dict) --
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
tableName (string) --
The name of the DynamoDB table.
payload (dict) --
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
contentExpression (string) --
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
type (string) --
The value of the payload type can be either STRING or JSON .
iotSiteWise (dict) --
Sends information about the detector model instance and the event that triggered the action to an asset property in AWS IoT SiteWise .
entryId (string) --
A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier.
assetId (string) --
The ID of the asset that has the specified property.
propertyId (string) --
The ID of the asset property.
propertyAlias (string) --
The alias of the asset property.
propertyValue (dict) --
The value to send to the asset property. This value contains timestamp, quality, and value (TQV) information.
value (dict) --
The value to send to an asset property.
stringValue (string) --
The asset property value is a string. You must use an expression, and the evaluated result should be a string.
integerValue (string) --
The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.
doubleValue (string) --
The asset property value is a double. You must use an expression, and the evaluated result should be a double.
booleanValue (string) --
The asset property value is a Boolean value that must be 'TRUE' or 'FALSE' . You must use an expression, and the evaluated result should be a Boolean value.
timestamp (dict) --
The timestamp associated with the asset property value. The default is the current event time.
timeInSeconds (string) --
The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.
offsetInNanos (string) --
The nanosecond offset converted from timeInSeconds . The valid range is between 0-999999999.
quality (string) --
The quality of the asset property value. The value must be 'GOOD' , 'BAD' , or 'UNCERTAIN' .
initialStateName (string) --
The state that is entered at the creation of each detector (instance).
detectorModelConfiguration (dict) --
Information about how the detector is configured.
detectorModelName (string) --
The name of the detector model.
detectorModelVersion (string) --
The version of the detector model.
detectorModelDescription (string) --
A brief description of the detector model.
detectorModelArn (string) --
The ARN of the detector model.
roleArn (string) --
The ARN of the role that grants permission to AWS IoT Events to perform its operations.
creationTime (datetime) --
The time the detector model was created.
lastUpdateTime (datetime) --
The time the detector model was last updated.
status (string) --
The status of the detector model.
key (string) --
The value used to identify a detector instance. When a device or system sends input, a new detector instance with a unique key value is created. AWS IoT Events can continue to route input to its corresponding detector instance based on this identifying information.
This parameter uses a JSON-path expression to select the attribute-value pair in the message payload that is used for identification. To route the message to the correct detector instance, the device must send a message payload that contains the same attribute-value.
evaluationMethod (string) --
Information about the order in which events are evaluated and how actions are executed.
Exceptions
Retrieves runtime information about a detector model analysis.
Note
After AWS IoT Events starts analyzing your detector model, you have up to 24 hours to retrieve the analysis results.
See also: AWS API Documentation
Request Syntax
response = client.describe_detector_model_analysis(
analysisId='string'
)
[REQUIRED]
The ID of the analysis result that you want to retrieve.
{
'status': 'RUNNING'|'COMPLETE'|'FAILED'
}
Response Structure
The status of the analysis activity. The status can be one of the following values:
Exceptions
Describes an input.
See also: AWS API Documentation
Request Syntax
response = client.describe_input(
inputName='string'
)
[REQUIRED]
The name of the input.
{
'input': {
'inputConfiguration': {
'inputName': 'string',
'inputDescription': 'string',
'inputArn': 'string',
'creationTime': datetime(2015, 1, 1),
'lastUpdateTime': datetime(2015, 1, 1),
'status': 'CREATING'|'UPDATING'|'ACTIVE'|'DELETING'
},
'inputDefinition': {
'attributes': [
{
'jsonPath': 'string'
},
]
}
}
}
Response Structure
Information about the input.
Information about the configuration of an input.
The name of the input.
A brief description of the input.
The ARN of the input.
The time the input was created.
The last time the input was updated.
The status of the input.
The definition of the input.
The attributes from the JSON payload that are made available by the input. Inputs are derived from messages sent to the AWS IoT Events system using BatchPutMessage . Each such message contains a JSON payload, and those attributes (and their paired values) specified here are available for use in the condition expressions used by detectors that monitor this input.
The attributes from the JSON payload that are made available by the input. Inputs are derived from messages sent to the AWS IoT Events system using BatchPutMessage . Each such message contains a JSON payload. Those attributes (and their paired values) specified here are available for use in the condition expressions used by detectors.
An expression that specifies an attribute-value pair in a JSON structure. Use this to specify an attribute from the JSON payload that is made available by the input. Inputs are derived from messages sent to AWS IoT Events (BatchPutMessage ). Each such message contains a JSON payload. The attribute (and its paired value) specified here are available for use in the condition expressions used by detectors.
Syntax: <field-name>.<field-name>...
Exceptions
Retrieves the current settings of the AWS IoT Events logging options.
See also: AWS API Documentation
Request Syntax
response = client.describe_logging_options()
{
'loggingOptions': {
'roleArn': 'string',
'level': 'ERROR'|'INFO'|'DEBUG',
'enabled': True|False,
'detectorDebugOptions': [
{
'detectorModelName': 'string',
'keyValue': 'string'
},
]
}
}
Response Structure
The current settings of the AWS IoT Events logging options.
The ARN of the role that grants permission to AWS IoT Events to perform logging.
The logging level.
If TRUE, logging is enabled for AWS IoT Events.
Information that identifies those detector models and their detectors (instances) for which the logging level is given.
The detector model and the specific detectors (instances) for which the logging level is given.
The name of the detector model.
The value of the input attribute key used to create the detector (the instance of the detector model).
Exceptions
Retrieves one or more analysis results of the detector model.
Note
After AWS IoT Events starts analyzing your detector model, you have up to 24 hours to retrieve the analysis results.
See also: AWS API Documentation
Request Syntax
response = client.get_detector_model_analysis_results(
analysisId='string',
nextToken='string',
maxResults=123
)
[REQUIRED]
The ID of the analysis result that you want to retrieve.
dict
Response Syntax
{
'analysisResults': [
{
'type': 'string',
'level': 'INFO'|'WARNING'|'ERROR',
'message': 'string',
'locations': [
{
'path': 'string'
},
]
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
analysisResults (list) --
Contains information about one or more analysis results.
(dict) --
Contains the result of the analysis.
type (string) --
The type of the analysis result. Analyses fall into the following types based on the validators used to generate the analysis result:
For more information, see Running detector model analyses in the AWS IoT Events Developer Guide .
level (string) --
The severity level of the analysis result. Based on the severity level, analysis results fall into three general categories:
message (string) --
Contains additional information about the analysis result.
locations (list) --
Contains one or more locations that you can use to locate the fields in your detector model that the analysis result references.
(dict) --
Contains information that you can use to locate the field in your detector model that the analysis result references.
path (string) --
A JsonPath expression that identifies the error field in your detector model.
nextToken (string) --
The token that you can use to return the next set of results, or null if there are no more results.
Exceptions
Create a paginator for an operation.
Returns an object that can wait for some condition.
Lists all the versions of an alarm model. The operation returns only the metadata associated with each alarm model version.
See also: AWS API Documentation
Request Syntax
response = client.list_alarm_model_versions(
alarmModelName='string',
nextToken='string',
maxResults=123
)
[REQUIRED]
The name of the alarm model.
dict
Response Syntax
{
'alarmModelVersionSummaries': [
{
'alarmModelName': 'string',
'alarmModelArn': 'string',
'alarmModelVersion': 'string',
'roleArn': 'string',
'creationTime': datetime(2015, 1, 1),
'lastUpdateTime': datetime(2015, 1, 1),
'status': 'ACTIVE'|'ACTIVATING'|'INACTIVE'|'FAILED',
'statusMessage': 'string'
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
alarmModelVersionSummaries (list) --
A list that summarizes each alarm model version.
(dict) --
Contains a summary of an alarm model version.
alarmModelName (string) --
The name of the alarm model.
alarmModelArn (string) --
The ARN of the alarm model. For more information, see Amazon Resource Names (ARNs) in the AWS General Reference .
alarmModelVersion (string) --
The version of the alarm model.
roleArn (string) --
The ARN of the IAM role that allows the alarm to perform actions and access AWS resources. For more information, see Amazon Resource Names (ARNs) in the AWS General Reference .
creationTime (datetime) --
The time the alarm model was created, in the Unix epoch format.
lastUpdateTime (datetime) --
The time the alarm model was last updated, in the Unix epoch format.
status (string) --
The status of the alarm model. The status can be one of the following values:
statusMessage (string) --
Contains information about the status of the alarm model version.
nextToken (string) --
The token that you can use to return the next set of results, or null if there are no more results.
Exceptions
Lists the alarm models that you created. The operation returns only the metadata associated with each alarm model.
See also: AWS API Documentation
Request Syntax
response = client.list_alarm_models(
nextToken='string',
maxResults=123
)
dict
Response Syntax
{
'alarmModelSummaries': [
{
'creationTime': datetime(2015, 1, 1),
'alarmModelDescription': 'string',
'alarmModelName': 'string'
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
alarmModelSummaries (list) --
A list that summarizes each alarm model.
(dict) --
Contains a summary of an alarm model.
creationTime (datetime) --
The time the alarm model was created, in the Unix epoch format.
alarmModelDescription (string) --
The description of the alarm model.
alarmModelName (string) --
The name of the alarm model.
nextToken (string) --
The token that you can use to return the next set of results, or null if there are no more results.
Exceptions
Lists all the versions of a detector model. Only the metadata associated with each detector model version is returned.
See also: AWS API Documentation
Request Syntax
response = client.list_detector_model_versions(
detectorModelName='string',
nextToken='string',
maxResults=123
)
[REQUIRED]
The name of the detector model whose versions are returned.
dict
Response Syntax
{
'detectorModelVersionSummaries': [
{
'detectorModelName': 'string',
'detectorModelVersion': 'string',
'detectorModelArn': 'string',
'roleArn': 'string',
'creationTime': datetime(2015, 1, 1),
'lastUpdateTime': datetime(2015, 1, 1),
'status': 'ACTIVE'|'ACTIVATING'|'INACTIVE'|'DEPRECATED'|'DRAFT'|'PAUSED'|'FAILED',
'evaluationMethod': 'BATCH'|'SERIAL'
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
detectorModelVersionSummaries (list) --
Summary information about the detector model versions.
(dict) --
Information about the detector model version.
detectorModelName (string) --
The name of the detector model.
detectorModelVersion (string) --
The ID of the detector model version.
detectorModelArn (string) --
The ARN of the detector model version.
roleArn (string) --
The ARN of the role that grants the detector model permission to perform its tasks.
creationTime (datetime) --
The time the detector model version was created.
lastUpdateTime (datetime) --
The last time the detector model version was updated.
status (string) --
The status of the detector model version.
evaluationMethod (string) --
Information about the order in which events are evaluated and how actions are executed.
nextToken (string) --
The token that you can use to return the next set of results, or null if there are no more results.
Exceptions
Lists the detector models you have created. Only the metadata associated with each detector model is returned.
See also: AWS API Documentation
Request Syntax
response = client.list_detector_models(
nextToken='string',
maxResults=123
)
dict
Response Syntax
{
'detectorModelSummaries': [
{
'detectorModelName': 'string',
'detectorModelDescription': 'string',
'creationTime': datetime(2015, 1, 1)
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
detectorModelSummaries (list) --
Summary information about the detector models.
(dict) --
Information about the detector model.
detectorModelName (string) --
The name of the detector model.
detectorModelDescription (string) --
A brief description of the detector model.
creationTime (datetime) --
The time the detector model was created.
nextToken (string) --
The token that you can use to return the next set of results, or null if there are no more results.
Exceptions
Lists one or more input routings.
See also: AWS API Documentation
Request Syntax
response = client.list_input_routings(
inputIdentifier={
'iotEventsInputIdentifier': {
'inputName': 'string'
},
'iotSiteWiseInputIdentifier': {
'iotSiteWiseAssetModelPropertyIdentifier': {
'assetModelId': 'string',
'propertyId': 'string'
}
}
},
maxResults=123,
nextToken='string'
)
[REQUIRED]
The identifer of the routed input.
The identifier of the input routed to AWS IoT Events.
The name of the input routed to AWS IoT Events.
The identifer of the input routed from AWS IoT SiteWise.
The identifier of the AWS IoT SiteWise asset model property.
The ID of the AWS IoT SiteWise asset model.
The ID of the AWS IoT SiteWise asset property.
dict
Response Syntax
{
'routedResources': [
{
'name': 'string',
'arn': 'string'
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
routedResources (list) --
Summary information about the routed resources.
(dict) --
Contains information about the routed resource.
name (string) --
The name of the routed resource.
arn (string) --
The ARN of the routed resource. For more information, see Amazon Resource Names (ARNs) in the AWS General Reference .
nextToken (string) --
The token that you can use to return the next set of results, or null if there are no more results.
Exceptions
Lists the inputs you have created.
See also: AWS API Documentation
Request Syntax
response = client.list_inputs(
nextToken='string',
maxResults=123
)
dict
Response Syntax
{
'inputSummaries': [
{
'inputName': 'string',
'inputDescription': 'string',
'inputArn': 'string',
'creationTime': datetime(2015, 1, 1),
'lastUpdateTime': datetime(2015, 1, 1),
'status': 'CREATING'|'UPDATING'|'ACTIVE'|'DELETING'
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
inputSummaries (list) --
Summary information about the inputs.
(dict) --
Information about the input.
inputName (string) --
The name of the input.
inputDescription (string) --
A brief description of the input.
inputArn (string) --
The ARN of the input.
creationTime (datetime) --
The time the input was created.
lastUpdateTime (datetime) --
The last time the input was updated.
status (string) --
The status of the input.
nextToken (string) --
The token that you can use to return the next set of results, or null if there are no more results.
Exceptions
Lists the tags (metadata) you have assigned to the resource.
See also: AWS API Documentation
Request Syntax
response = client.list_tags_for_resource(
resourceArn='string'
)
[REQUIRED]
The ARN of the resource.
{
'tags': [
{
'key': 'string',
'value': 'string'
},
]
}
Response Structure
The list of tags assigned to the resource.
Metadata that can be used to manage the resource.
The tag's key.
The tag's value.
Exceptions
Sets or updates the AWS IoT Events logging options.
If you update the value of any loggingOptions field, it takes up to one minute for the change to take effect. If you change the policy attached to the role you specified in the roleArn field (for example, to correct an invalid policy), it takes up to five minutes for that change to take effect.
See also: AWS API Documentation
Request Syntax
response = client.put_logging_options(
loggingOptions={
'roleArn': 'string',
'level': 'ERROR'|'INFO'|'DEBUG',
'enabled': True|False,
'detectorDebugOptions': [
{
'detectorModelName': 'string',
'keyValue': 'string'
},
]
}
)
[REQUIRED]
The new values of the AWS IoT Events logging options.
The ARN of the role that grants permission to AWS IoT Events to perform logging.
The logging level.
If TRUE, logging is enabled for AWS IoT Events.
Information that identifies those detector models and their detectors (instances) for which the logging level is given.
The detector model and the specific detectors (instances) for which the logging level is given.
The name of the detector model.
The value of the input attribute key used to create the detector (the instance of the detector model).
Exceptions
Performs an analysis of your detector model. For more information, see Troubleshooting a detector model in the AWS IoT Events Developer Guide .
See also: AWS API Documentation
Request Syntax
response = client.start_detector_model_analysis(
detectorModelDefinition={
'states': [
{
'stateName': 'string',
'onInput': {
'events': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotTopicPublish': {
'mqttTopic': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'setTimer': {
'timerName': 'string',
'seconds': 123,
'durationExpression': 'string'
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotEvents': {
'inputName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False,
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDB': {
'hashKeyType': 'string',
'hashKeyField': 'string',
'hashKeyValue': 'string',
'rangeKeyType': 'string',
'rangeKeyField': 'string',
'rangeKeyValue': 'string',
'operation': 'string',
'payloadField': 'string',
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDBv2': {
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotSiteWise': {
'entryId': 'string',
'assetId': 'string',
'propertyId': 'string',
'propertyAlias': 'string',
'propertyValue': {
'value': {
'stringValue': 'string',
'integerValue': 'string',
'doubleValue': 'string',
'booleanValue': 'string'
},
'timestamp': {
'timeInSeconds': 'string',
'offsetInNanos': 'string'
},
'quality': 'string'
}
}
},
]
},
],
'transitionEvents': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotTopicPublish': {
'mqttTopic': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'setTimer': {
'timerName': 'string',
'seconds': 123,
'durationExpression': 'string'
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotEvents': {
'inputName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False,
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDB': {
'hashKeyType': 'string',
'hashKeyField': 'string',
'hashKeyValue': 'string',
'rangeKeyType': 'string',
'rangeKeyField': 'string',
'rangeKeyValue': 'string',
'operation': 'string',
'payloadField': 'string',
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDBv2': {
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotSiteWise': {
'entryId': 'string',
'assetId': 'string',
'propertyId': 'string',
'propertyAlias': 'string',
'propertyValue': {
'value': {
'stringValue': 'string',
'integerValue': 'string',
'doubleValue': 'string',
'booleanValue': 'string'
},
'timestamp': {
'timeInSeconds': 'string',
'offsetInNanos': 'string'
},
'quality': 'string'
}
}
},
],
'nextState': 'string'
},
]
},
'onEnter': {
'events': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotTopicPublish': {
'mqttTopic': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'setTimer': {
'timerName': 'string',
'seconds': 123,
'durationExpression': 'string'
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotEvents': {
'inputName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False,
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDB': {
'hashKeyType': 'string',
'hashKeyField': 'string',
'hashKeyValue': 'string',
'rangeKeyType': 'string',
'rangeKeyField': 'string',
'rangeKeyValue': 'string',
'operation': 'string',
'payloadField': 'string',
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDBv2': {
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotSiteWise': {
'entryId': 'string',
'assetId': 'string',
'propertyId': 'string',
'propertyAlias': 'string',
'propertyValue': {
'value': {
'stringValue': 'string',
'integerValue': 'string',
'doubleValue': 'string',
'booleanValue': 'string'
},
'timestamp': {
'timeInSeconds': 'string',
'offsetInNanos': 'string'
},
'quality': 'string'
}
}
},
]
},
]
},
'onExit': {
'events': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotTopicPublish': {
'mqttTopic': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'setTimer': {
'timerName': 'string',
'seconds': 123,
'durationExpression': 'string'
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotEvents': {
'inputName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False,
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDB': {
'hashKeyType': 'string',
'hashKeyField': 'string',
'hashKeyValue': 'string',
'rangeKeyType': 'string',
'rangeKeyField': 'string',
'rangeKeyValue': 'string',
'operation': 'string',
'payloadField': 'string',
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDBv2': {
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotSiteWise': {
'entryId': 'string',
'assetId': 'string',
'propertyId': 'string',
'propertyAlias': 'string',
'propertyValue': {
'value': {
'stringValue': 'string',
'integerValue': 'string',
'doubleValue': 'string',
'booleanValue': 'string'
},
'timestamp': {
'timeInSeconds': 'string',
'offsetInNanos': 'string'
},
'quality': 'string'
}
}
},
]
},
]
}
},
],
'initialStateName': 'string'
}
)
[REQUIRED]
Information that defines how a detector operates.
Information about the states of the detector.
Information that defines a state of a detector.
The name of the state.
When an input is received and the condition is TRUE, perform the specified actions .
Specifies the actions performed when the condition evaluates to TRUE.
Specifies the actions to be performed when the condition evaluates to TRUE.
The name of the event.
Optional. The Boolean expression that, when TRUE, causes the actions to be performed. If not present, the actions are performed (=TRUE). If the expression result is not a Boolean value, the actions are not performed (=FALSE).
The actions to be performed.
An action to be performed when the condition is TRUE.
Sets a variable to a specified value.
The name of the variable.
The new value of the variable.
Sends an Amazon SNS message.
The ARN of the Amazon SNS target where the message is sent.
You can configure the action payload when you send a message as an Amazon SNS push notification.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Publishes an MQTT message with the given topic to the AWS IoT message broker.
The MQTT topic of the message. You can use a string expression that includes variables ($variable.<variable-name> ) and input values ($input.<input-name>.<path-to-datum> ) as the topic string.
You can configure the action payload when you publish a message to an AWS IoT Core topic.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Information needed to set the timer.
The name of the timer.
The number of seconds until the timer expires. The minimum value is 60 seconds to ensure accuracy. The maximum value is 31622400 seconds.
The duration of the timer, in seconds. You can use a string expression that includes numbers, variables ($variable.<variable-name> ), and input values ($input.<input-name>.<path-to-datum> ) as the duration. The range of the duration is 1-31622400 seconds. To ensure accuracy, the minimum duration is 60 seconds. The evaluated result of the duration is rounded down to the nearest whole number.
Information needed to clear the timer.
The name of the timer to clear.
Information needed to reset the timer.
The name of the timer to reset.
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
The ARN of the Lambda function that is executed.
You can configure the action payload when you send a message to a Lambda function.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends AWS IoT Events input, which passes information about the detector model instance and the event that triggered the action.
The name of the AWS IoT Events input where the data is sent.
You can configure the action payload when you send a message to an AWS IoT Events input.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.
The URL of the SQS queue where the data is written.
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
You can configure the action payload when you send a message to an Amazon SQS queue.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
The name of the Kinesis Data Firehose delivery stream where the data is written.
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: 'n' (newline), 't' (tab), 'rn' (Windows newline), ',' (comma).
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The data type for the hash key (also called the partition key). You can specify the following values:
If you don't specify hashKeyType , the default value is 'STRING' .
The name of the hash key (also called the partition key). The hashKeyField value must match the partition key of the target DynamoDB table.
The value of the hash key (also called the partition key).
The data type for the range key (also called the sort key), You can specify the following values:
If you don't specify rangeKeyField , the default value is 'STRING' .
The name of the range key (also called the sort key). The rangeKeyField value must match the sort key of the target DynamoDB table.
The value of the range key (also called the sort key).
The type of operation to perform. You can specify the following values:
If you don't specify this parameter, AWS IoT Events triggers the 'INSERT' operation.
The name of the DynamoDB column that receives the action payload.
If you don't specify this parameter, the name of the DynamoDB column is payload .
The name of the DynamoDB table. The tableName value must match the table name of the target DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The name of the DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an asset property in AWS IoT SiteWise .
A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier.
The ID of the asset that has the specified property.
The ID of the asset property.
The alias of the asset property.
The value to send to the asset property. This value contains timestamp, quality, and value (TQV) information.
The value to send to an asset property.
The asset property value is a string. You must use an expression, and the evaluated result should be a string.
The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.
The asset property value is a double. You must use an expression, and the evaluated result should be a double.
The asset property value is a Boolean value that must be 'TRUE' or 'FALSE' . You must use an expression, and the evaluated result should be a Boolean value.
The timestamp associated with the asset property value. The default is the current event time.
The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.
The nanosecond offset converted from timeInSeconds . The valid range is between 0-999999999.
The quality of the asset property value. The value must be 'GOOD' , 'BAD' , or 'UNCERTAIN' .
Specifies the actions performed, and the next state entered, when a condition evaluates to TRUE.
Specifies the actions performed and the next state entered when a condition evaluates to TRUE.
The name of the transition event.
Required. A Boolean expression that when TRUE causes the actions to be performed and the nextState to be entered.
The actions to be performed.
An action to be performed when the condition is TRUE.
Sets a variable to a specified value.
The name of the variable.
The new value of the variable.
Sends an Amazon SNS message.
The ARN of the Amazon SNS target where the message is sent.
You can configure the action payload when you send a message as an Amazon SNS push notification.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Publishes an MQTT message with the given topic to the AWS IoT message broker.
The MQTT topic of the message. You can use a string expression that includes variables ($variable.<variable-name> ) and input values ($input.<input-name>.<path-to-datum> ) as the topic string.
You can configure the action payload when you publish a message to an AWS IoT Core topic.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Information needed to set the timer.
The name of the timer.
The number of seconds until the timer expires. The minimum value is 60 seconds to ensure accuracy. The maximum value is 31622400 seconds.
The duration of the timer, in seconds. You can use a string expression that includes numbers, variables ($variable.<variable-name> ), and input values ($input.<input-name>.<path-to-datum> ) as the duration. The range of the duration is 1-31622400 seconds. To ensure accuracy, the minimum duration is 60 seconds. The evaluated result of the duration is rounded down to the nearest whole number.
Information needed to clear the timer.
The name of the timer to clear.
Information needed to reset the timer.
The name of the timer to reset.
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
The ARN of the Lambda function that is executed.
You can configure the action payload when you send a message to a Lambda function.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends AWS IoT Events input, which passes information about the detector model instance and the event that triggered the action.
The name of the AWS IoT Events input where the data is sent.
You can configure the action payload when you send a message to an AWS IoT Events input.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.
The URL of the SQS queue where the data is written.
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
You can configure the action payload when you send a message to an Amazon SQS queue.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
The name of the Kinesis Data Firehose delivery stream where the data is written.
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: 'n' (newline), 't' (tab), 'rn' (Windows newline), ',' (comma).
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The data type for the hash key (also called the partition key). You can specify the following values:
If you don't specify hashKeyType , the default value is 'STRING' .
The name of the hash key (also called the partition key). The hashKeyField value must match the partition key of the target DynamoDB table.
The value of the hash key (also called the partition key).
The data type for the range key (also called the sort key), You can specify the following values:
If you don't specify rangeKeyField , the default value is 'STRING' .
The name of the range key (also called the sort key). The rangeKeyField value must match the sort key of the target DynamoDB table.
The value of the range key (also called the sort key).
The type of operation to perform. You can specify the following values:
If you don't specify this parameter, AWS IoT Events triggers the 'INSERT' operation.
The name of the DynamoDB column that receives the action payload.
If you don't specify this parameter, the name of the DynamoDB column is payload .
The name of the DynamoDB table. The tableName value must match the table name of the target DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The name of the DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an asset property in AWS IoT SiteWise .
A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier.
The ID of the asset that has the specified property.
The ID of the asset property.
The alias of the asset property.
The value to send to the asset property. This value contains timestamp, quality, and value (TQV) information.
The value to send to an asset property.
The asset property value is a string. You must use an expression, and the evaluated result should be a string.
The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.
The asset property value is a double. You must use an expression, and the evaluated result should be a double.
The asset property value is a Boolean value that must be 'TRUE' or 'FALSE' . You must use an expression, and the evaluated result should be a Boolean value.
The timestamp associated with the asset property value. The default is the current event time.
The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.
The nanosecond offset converted from timeInSeconds . The valid range is between 0-999999999.
The quality of the asset property value. The value must be 'GOOD' , 'BAD' , or 'UNCERTAIN' .
The next state to enter.
When entering this state, perform these actions if the condition is TRUE.
Specifies the actions that are performed when the state is entered and the condition is TRUE .
Specifies the actions to be performed when the condition evaluates to TRUE.
The name of the event.
Optional. The Boolean expression that, when TRUE, causes the actions to be performed. If not present, the actions are performed (=TRUE). If the expression result is not a Boolean value, the actions are not performed (=FALSE).
The actions to be performed.
An action to be performed when the condition is TRUE.
Sets a variable to a specified value.
The name of the variable.
The new value of the variable.
Sends an Amazon SNS message.
The ARN of the Amazon SNS target where the message is sent.
You can configure the action payload when you send a message as an Amazon SNS push notification.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Publishes an MQTT message with the given topic to the AWS IoT message broker.
The MQTT topic of the message. You can use a string expression that includes variables ($variable.<variable-name> ) and input values ($input.<input-name>.<path-to-datum> ) as the topic string.
You can configure the action payload when you publish a message to an AWS IoT Core topic.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Information needed to set the timer.
The name of the timer.
The number of seconds until the timer expires. The minimum value is 60 seconds to ensure accuracy. The maximum value is 31622400 seconds.
The duration of the timer, in seconds. You can use a string expression that includes numbers, variables ($variable.<variable-name> ), and input values ($input.<input-name>.<path-to-datum> ) as the duration. The range of the duration is 1-31622400 seconds. To ensure accuracy, the minimum duration is 60 seconds. The evaluated result of the duration is rounded down to the nearest whole number.
Information needed to clear the timer.
The name of the timer to clear.
Information needed to reset the timer.
The name of the timer to reset.
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
The ARN of the Lambda function that is executed.
You can configure the action payload when you send a message to a Lambda function.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends AWS IoT Events input, which passes information about the detector model instance and the event that triggered the action.
The name of the AWS IoT Events input where the data is sent.
You can configure the action payload when you send a message to an AWS IoT Events input.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.
The URL of the SQS queue where the data is written.
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
You can configure the action payload when you send a message to an Amazon SQS queue.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
The name of the Kinesis Data Firehose delivery stream where the data is written.
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: 'n' (newline), 't' (tab), 'rn' (Windows newline), ',' (comma).
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The data type for the hash key (also called the partition key). You can specify the following values:
If you don't specify hashKeyType , the default value is 'STRING' .
The name of the hash key (also called the partition key). The hashKeyField value must match the partition key of the target DynamoDB table.
The value of the hash key (also called the partition key).
The data type for the range key (also called the sort key), You can specify the following values:
If you don't specify rangeKeyField , the default value is 'STRING' .
The name of the range key (also called the sort key). The rangeKeyField value must match the sort key of the target DynamoDB table.
The value of the range key (also called the sort key).
The type of operation to perform. You can specify the following values:
If you don't specify this parameter, AWS IoT Events triggers the 'INSERT' operation.
The name of the DynamoDB column that receives the action payload.
If you don't specify this parameter, the name of the DynamoDB column is payload .
The name of the DynamoDB table. The tableName value must match the table name of the target DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The name of the DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an asset property in AWS IoT SiteWise .
A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier.
The ID of the asset that has the specified property.
The ID of the asset property.
The alias of the asset property.
The value to send to the asset property. This value contains timestamp, quality, and value (TQV) information.
The value to send to an asset property.
The asset property value is a string. You must use an expression, and the evaluated result should be a string.
The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.
The asset property value is a double. You must use an expression, and the evaluated result should be a double.
The asset property value is a Boolean value that must be 'TRUE' or 'FALSE' . You must use an expression, and the evaluated result should be a Boolean value.
The timestamp associated with the asset property value. The default is the current event time.
The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.
The nanosecond offset converted from timeInSeconds . The valid range is between 0-999999999.
The quality of the asset property value. The value must be 'GOOD' , 'BAD' , or 'UNCERTAIN' .
When exiting this state, perform these actions if the specified condition is TRUE .
Specifies the actions that are performed when the state is exited and the condition is TRUE .
Specifies the actions to be performed when the condition evaluates to TRUE.
The name of the event.
Optional. The Boolean expression that, when TRUE, causes the actions to be performed. If not present, the actions are performed (=TRUE). If the expression result is not a Boolean value, the actions are not performed (=FALSE).
The actions to be performed.
An action to be performed when the condition is TRUE.
Sets a variable to a specified value.
The name of the variable.
The new value of the variable.
Sends an Amazon SNS message.
The ARN of the Amazon SNS target where the message is sent.
You can configure the action payload when you send a message as an Amazon SNS push notification.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Publishes an MQTT message with the given topic to the AWS IoT message broker.
The MQTT topic of the message. You can use a string expression that includes variables ($variable.<variable-name> ) and input values ($input.<input-name>.<path-to-datum> ) as the topic string.
You can configure the action payload when you publish a message to an AWS IoT Core topic.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Information needed to set the timer.
The name of the timer.
The number of seconds until the timer expires. The minimum value is 60 seconds to ensure accuracy. The maximum value is 31622400 seconds.
The duration of the timer, in seconds. You can use a string expression that includes numbers, variables ($variable.<variable-name> ), and input values ($input.<input-name>.<path-to-datum> ) as the duration. The range of the duration is 1-31622400 seconds. To ensure accuracy, the minimum duration is 60 seconds. The evaluated result of the duration is rounded down to the nearest whole number.
Information needed to clear the timer.
The name of the timer to clear.
Information needed to reset the timer.
The name of the timer to reset.
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
The ARN of the Lambda function that is executed.
You can configure the action payload when you send a message to a Lambda function.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends AWS IoT Events input, which passes information about the detector model instance and the event that triggered the action.
The name of the AWS IoT Events input where the data is sent.
You can configure the action payload when you send a message to an AWS IoT Events input.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.
The URL of the SQS queue where the data is written.
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
You can configure the action payload when you send a message to an Amazon SQS queue.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
The name of the Kinesis Data Firehose delivery stream where the data is written.
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: 'n' (newline), 't' (tab), 'rn' (Windows newline), ',' (comma).
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The data type for the hash key (also called the partition key). You can specify the following values:
If you don't specify hashKeyType , the default value is 'STRING' .
The name of the hash key (also called the partition key). The hashKeyField value must match the partition key of the target DynamoDB table.
The value of the hash key (also called the partition key).
The data type for the range key (also called the sort key), You can specify the following values:
If you don't specify rangeKeyField , the default value is 'STRING' .
The name of the range key (also called the sort key). The rangeKeyField value must match the sort key of the target DynamoDB table.
The value of the range key (also called the sort key).
The type of operation to perform. You can specify the following values:
If you don't specify this parameter, AWS IoT Events triggers the 'INSERT' operation.
The name of the DynamoDB column that receives the action payload.
If you don't specify this parameter, the name of the DynamoDB column is payload .
The name of the DynamoDB table. The tableName value must match the table name of the target DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The name of the DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an asset property in AWS IoT SiteWise .
A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier.
The ID of the asset that has the specified property.
The ID of the asset property.
The alias of the asset property.
The value to send to the asset property. This value contains timestamp, quality, and value (TQV) information.
The value to send to an asset property.
The asset property value is a string. You must use an expression, and the evaluated result should be a string.
The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.
The asset property value is a double. You must use an expression, and the evaluated result should be a double.
The asset property value is a Boolean value that must be 'TRUE' or 'FALSE' . You must use an expression, and the evaluated result should be a Boolean value.
The timestamp associated with the asset property value. The default is the current event time.
The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.
The nanosecond offset converted from timeInSeconds . The valid range is between 0-999999999.
The quality of the asset property value. The value must be 'GOOD' , 'BAD' , or 'UNCERTAIN' .
The state that is entered at the creation of each detector (instance).
{
'analysisId': 'string'
}
Response Structure
The ID that you can use to retrieve the analysis result.
Exceptions
Adds to or modifies the tags of the given resource. Tags are metadata that can be used to manage a resource.
See also: AWS API Documentation
Request Syntax
response = client.tag_resource(
resourceArn='string',
tags=[
{
'key': 'string',
'value': 'string'
},
]
)
[REQUIRED]
The ARN of the resource.
[REQUIRED]
The new or modified tags for the resource.
Metadata that can be used to manage the resource.
The tag's key.
The tag's value.
dict
Response Syntax
{}
Response Structure
Exceptions
Removes the given tags (metadata) from the resource.
See also: AWS API Documentation
Request Syntax
response = client.untag_resource(
resourceArn='string',
tagKeys=[
'string',
]
)
[REQUIRED]
The ARN of the resource.
[REQUIRED]
A list of the keys of the tags to be removed from the resource.
dict
Response Syntax
{}
Response Structure
Exceptions
Updates an alarm model. Any alarms that were created based on the previous version are deleted and then created again as new data arrives.
See also: AWS API Documentation
Request Syntax
response = client.update_alarm_model(
alarmModelName='string',
alarmModelDescription='string',
roleArn='string',
severity=123,
alarmRule={
'simpleRule': {
'inputProperty': 'string',
'comparisonOperator': 'GREATER'|'GREATER_OR_EQUAL'|'LESS'|'LESS_OR_EQUAL'|'EQUAL'|'NOT_EQUAL',
'threshold': 'string'
}
},
alarmNotification={
'notificationActions': [
{
'action': {
'lambdaAction': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
}
},
'smsConfigurations': [
{
'senderId': 'string',
'additionalMessage': 'string',
'recipients': [
{
'ssoIdentity': {
'identityStoreId': 'string',
'userId': 'string'
}
},
]
},
],
'emailConfigurations': [
{
'from': 'string',
'content': {
'subject': 'string',
'additionalMessage': 'string'
},
'recipients': {
'to': [
{
'ssoIdentity': {
'identityStoreId': 'string',
'userId': 'string'
}
},
]
}
},
]
},
]
},
alarmEventActions={
'alarmActions': [
{
'sns': {
'targetArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotTopicPublish': {
'mqttTopic': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'lambda': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotEvents': {
'inputName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False,
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDB': {
'hashKeyType': 'string',
'hashKeyField': 'string',
'hashKeyValue': 'string',
'rangeKeyType': 'string',
'rangeKeyField': 'string',
'rangeKeyValue': 'string',
'operation': 'string',
'payloadField': 'string',
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDBv2': {
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotSiteWise': {
'entryId': 'string',
'assetId': 'string',
'propertyId': 'string',
'propertyAlias': 'string',
'propertyValue': {
'value': {
'stringValue': 'string',
'integerValue': 'string',
'doubleValue': 'string',
'booleanValue': 'string'
},
'timestamp': {
'timeInSeconds': 'string',
'offsetInNanos': 'string'
},
'quality': 'string'
}
}
},
]
},
alarmCapabilities={
'initializationConfiguration': {
'disabledOnInitialization': True|False
},
'acknowledgeFlow': {
'enabled': True|False
}
}
)
[REQUIRED]
The name of the alarm model.
[REQUIRED]
The ARN of the IAM role that allows the alarm to perform actions and access AWS resources. For more information, see Amazon Resource Names (ARNs) in the AWS General Reference .
[REQUIRED]
Defines when your alarm is invoked.
A rule that compares an input property value to a threshold value with a comparison operator.
The value on the left side of the comparison operator. You can specify an AWS IoT Events input attribute as an input property.
The comparison operator.
The value on the right side of the comparison operator. You can enter a number or specify an AWS IoT Events input attribute.
Contains information about one or more notification actions.
Contains the notification settings of an alarm model. The settings apply to all alarms that were created based on this alarm model.
Contains the notification settings of an alarm model. The settings apply to all alarms that were created based on this alarm model.
Specifies an AWS Lambda function to manage alarm notifications. You can create one or use the AWS Lambda function provided by AWS IoT Events .
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
The ARN of the Lambda function that is executed.
You can configure the action payload when you send a message to a Lambda function.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Contains the configuration information of SMS notifications.
Contains the configuration information of SMS notifications.
The sender ID.
The message that you want to send. The message can be up to 200 characters.
Specifies one or more recipients who receive the message.
Warning
You must add the users that receive SMS messages to your AWS SSO store .
The information that identifies the recipient.
The AWS Single Sign-On (AWS SSO) authentication information.
The ID of the AWS SSO identity store.
The user ID.
Contains the configuration information of email notifications.
Contains the configuration information of email notifications.
The email address that sends emails.
Warning
If you use the AWS IoT Events managed AWS Lambda function to manage your emails, you must verify the email address that sends emails in Amazon SES .
Contains the subject and message of an email.
The subject of the email.
The message that you want to send. The message can be up to 200 characters.
Contains the information of one or more recipients who receive the emails.
Warning
You must add the users that receive emails to your AWS SSO store .
Specifies one or more recipients who receive the email.
The information that identifies the recipient.
The AWS Single Sign-On (AWS SSO) authentication information.
The ID of the AWS SSO identity store.
The user ID.
Contains information about one or more alarm actions.
Specifies one or more supported actions to receive notifications when the alarm state changes.
Specifies one of the following actions to receive notifications when the alarm state changes.
Information required to publish the Amazon SNS message.
The ARN of the Amazon SNS target where the message is sent.
You can configure the action payload when you send a message as an Amazon SNS push notification.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Information required to publish the MQTT message through the AWS IoT message broker.
The MQTT topic of the message. You can use a string expression that includes variables ($variable.<variable-name> ) and input values ($input.<input-name>.<path-to-datum> ) as the topic string.
You can configure the action payload when you publish a message to an AWS IoT Core topic.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
The ARN of the Lambda function that is executed.
You can configure the action payload when you send a message to a Lambda function.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends an AWS IoT Events input, passing in information about the detector model instance and the event that triggered the action.
The name of the AWS IoT Events input where the data is sent.
You can configure the action payload when you send a message to an AWS IoT Events input.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.
The URL of the SQS queue where the data is written.
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
You can configure the action payload when you send a message to an Amazon SQS queue.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
The name of the Kinesis Data Firehose delivery stream where the data is written.
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: 'n' (newline), 't' (tab), 'rn' (Windows newline), ',' (comma).
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
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 more information, see Expressions in the AWS IoT Events Developer Guide .
If the defined payload type is a string, DynamoDBAction writes non-JSON data to the DynamoDB table as binary data. The DynamoDB console displays the data as Base64-encoded text. The value for the payloadField parameter is <payload-field>_raw .
The data type for the hash key (also called the partition key). You can specify the following values:
If you don't specify hashKeyType , the default value is 'STRING' .
The name of the hash key (also called the partition key). The hashKeyField value must match the partition key of the target DynamoDB table.
The value of the hash key (also called the partition key).
The data type for the range key (also called the sort key), You can specify the following values:
If you don't specify rangeKeyField , the default value is 'STRING' .
The name of the range key (also called the sort key). The rangeKeyField value must match the sort key of the target DynamoDB table.
The value of the range key (also called the sort key).
The type of operation to perform. You can specify the following values:
If you don't specify this parameter, AWS IoT Events triggers the 'INSERT' operation.
The name of the DynamoDB column that receives the action payload.
If you don't specify this parameter, the name of the DynamoDB column is payload .
The name of the DynamoDB table. The tableName value must match the table name of the target DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
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 more information, see Expressions in the AWS IoT Events Developer Guide .
The value for the type parameter in Payload must be JSON .
The name of the DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to a specified asset property in AWS IoT SiteWise.
You must use expressions for all parameters in IotSiteWiseAction . The expressions accept literals, operators, functions, references, and substitutions templates.
Examples
You must specify either propertyAlias or both assetId and propertyId to identify the target asset property in AWS IoT SiteWise.
For more information, see Expressions in the AWS IoT Events Developer Guide .
A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier.
The ID of the asset that has the specified property.
The ID of the asset property.
The alias of the asset property.
The value to send to the asset property. This value contains timestamp, quality, and value (TQV) information.
The value to send to an asset property.
The asset property value is a string. You must use an expression, and the evaluated result should be a string.
The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.
The asset property value is a double. You must use an expression, and the evaluated result should be a double.
The asset property value is a Boolean value that must be 'TRUE' or 'FALSE' . You must use an expression, and the evaluated result should be a Boolean value.
The timestamp associated with the asset property value. The default is the current event time.
The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.
The nanosecond offset converted from timeInSeconds . The valid range is between 0-999999999.
The quality of the asset property value. The value must be 'GOOD' , 'BAD' , or 'UNCERTAIN' .
Contains the configuration information of alarm state changes.
Specifies the default alarm state. The configuration applies to all alarms that were created based on this alarm model.
The value must be TRUE or FALSE . If FALSE , all alarm instances created based on the alarm model are activated. The default value is TRUE .
Specifies whether to get notified for alarm state changes.
The value must be TRUE or FALSE . If TRUE , you receive a notification when the alarm state changes. You must choose to acknowledge the notification before the alarm state can return to NORMAL . If FALSE , you won't receive notifications. The alarm automatically changes to the NORMAL state when the input property value returns to the specified range.
dict
Response Syntax
{
'creationTime': datetime(2015, 1, 1),
'alarmModelArn': 'string',
'alarmModelVersion': 'string',
'lastUpdateTime': datetime(2015, 1, 1),
'status': 'ACTIVE'|'ACTIVATING'|'INACTIVE'|'FAILED'
}
Response Structure
(dict) --
creationTime (datetime) --
The time the alarm model was created, in the Unix epoch format.
alarmModelArn (string) --
The ARN of the alarm model. For more information, see Amazon Resource Names (ARNs) in the AWS General Reference .
alarmModelVersion (string) --
The version of the alarm model.
lastUpdateTime (datetime) --
The time the alarm model was last updated, in the Unix epoch format.
status (string) --
The status of the alarm model. The status can be one of the following values:
Exceptions
Updates a detector model. Detectors (instances) spawned by the previous version are deleted and then re-created as new inputs arrive.
See also: AWS API Documentation
Request Syntax
response = client.update_detector_model(
detectorModelName='string',
detectorModelDefinition={
'states': [
{
'stateName': 'string',
'onInput': {
'events': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotTopicPublish': {
'mqttTopic': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'setTimer': {
'timerName': 'string',
'seconds': 123,
'durationExpression': 'string'
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotEvents': {
'inputName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False,
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDB': {
'hashKeyType': 'string',
'hashKeyField': 'string',
'hashKeyValue': 'string',
'rangeKeyType': 'string',
'rangeKeyField': 'string',
'rangeKeyValue': 'string',
'operation': 'string',
'payloadField': 'string',
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDBv2': {
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotSiteWise': {
'entryId': 'string',
'assetId': 'string',
'propertyId': 'string',
'propertyAlias': 'string',
'propertyValue': {
'value': {
'stringValue': 'string',
'integerValue': 'string',
'doubleValue': 'string',
'booleanValue': 'string'
},
'timestamp': {
'timeInSeconds': 'string',
'offsetInNanos': 'string'
},
'quality': 'string'
}
}
},
]
},
],
'transitionEvents': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotTopicPublish': {
'mqttTopic': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'setTimer': {
'timerName': 'string',
'seconds': 123,
'durationExpression': 'string'
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotEvents': {
'inputName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False,
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDB': {
'hashKeyType': 'string',
'hashKeyField': 'string',
'hashKeyValue': 'string',
'rangeKeyType': 'string',
'rangeKeyField': 'string',
'rangeKeyValue': 'string',
'operation': 'string',
'payloadField': 'string',
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDBv2': {
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotSiteWise': {
'entryId': 'string',
'assetId': 'string',
'propertyId': 'string',
'propertyAlias': 'string',
'propertyValue': {
'value': {
'stringValue': 'string',
'integerValue': 'string',
'doubleValue': 'string',
'booleanValue': 'string'
},
'timestamp': {
'timeInSeconds': 'string',
'offsetInNanos': 'string'
},
'quality': 'string'
}
}
},
],
'nextState': 'string'
},
]
},
'onEnter': {
'events': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotTopicPublish': {
'mqttTopic': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'setTimer': {
'timerName': 'string',
'seconds': 123,
'durationExpression': 'string'
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotEvents': {
'inputName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False,
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDB': {
'hashKeyType': 'string',
'hashKeyField': 'string',
'hashKeyValue': 'string',
'rangeKeyType': 'string',
'rangeKeyField': 'string',
'rangeKeyValue': 'string',
'operation': 'string',
'payloadField': 'string',
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDBv2': {
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotSiteWise': {
'entryId': 'string',
'assetId': 'string',
'propertyId': 'string',
'propertyAlias': 'string',
'propertyValue': {
'value': {
'stringValue': 'string',
'integerValue': 'string',
'doubleValue': 'string',
'booleanValue': 'string'
},
'timestamp': {
'timeInSeconds': 'string',
'offsetInNanos': 'string'
},
'quality': 'string'
}
}
},
]
},
]
},
'onExit': {
'events': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotTopicPublish': {
'mqttTopic': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'setTimer': {
'timerName': 'string',
'seconds': 123,
'durationExpression': 'string'
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotEvents': {
'inputName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False,
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDB': {
'hashKeyType': 'string',
'hashKeyField': 'string',
'hashKeyValue': 'string',
'rangeKeyType': 'string',
'rangeKeyField': 'string',
'rangeKeyValue': 'string',
'operation': 'string',
'payloadField': 'string',
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'dynamoDBv2': {
'tableName': 'string',
'payload': {
'contentExpression': 'string',
'type': 'STRING'|'JSON'
}
},
'iotSiteWise': {
'entryId': 'string',
'assetId': 'string',
'propertyId': 'string',
'propertyAlias': 'string',
'propertyValue': {
'value': {
'stringValue': 'string',
'integerValue': 'string',
'doubleValue': 'string',
'booleanValue': 'string'
},
'timestamp': {
'timeInSeconds': 'string',
'offsetInNanos': 'string'
},
'quality': 'string'
}
}
},
]
},
]
}
},
],
'initialStateName': 'string'
},
detectorModelDescription='string',
roleArn='string',
evaluationMethod='BATCH'|'SERIAL'
)
[REQUIRED]
The name of the detector model that is updated.
[REQUIRED]
Information that defines how a detector operates.
Information about the states of the detector.
Information that defines a state of a detector.
The name of the state.
When an input is received and the condition is TRUE, perform the specified actions .
Specifies the actions performed when the condition evaluates to TRUE.
Specifies the actions to be performed when the condition evaluates to TRUE.
The name of the event.
Optional. The Boolean expression that, when TRUE, causes the actions to be performed. If not present, the actions are performed (=TRUE). If the expression result is not a Boolean value, the actions are not performed (=FALSE).
The actions to be performed.
An action to be performed when the condition is TRUE.
Sets a variable to a specified value.
The name of the variable.
The new value of the variable.
Sends an Amazon SNS message.
The ARN of the Amazon SNS target where the message is sent.
You can configure the action payload when you send a message as an Amazon SNS push notification.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Publishes an MQTT message with the given topic to the AWS IoT message broker.
The MQTT topic of the message. You can use a string expression that includes variables ($variable.<variable-name> ) and input values ($input.<input-name>.<path-to-datum> ) as the topic string.
You can configure the action payload when you publish a message to an AWS IoT Core topic.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Information needed to set the timer.
The name of the timer.
The number of seconds until the timer expires. The minimum value is 60 seconds to ensure accuracy. The maximum value is 31622400 seconds.
The duration of the timer, in seconds. You can use a string expression that includes numbers, variables ($variable.<variable-name> ), and input values ($input.<input-name>.<path-to-datum> ) as the duration. The range of the duration is 1-31622400 seconds. To ensure accuracy, the minimum duration is 60 seconds. The evaluated result of the duration is rounded down to the nearest whole number.
Information needed to clear the timer.
The name of the timer to clear.
Information needed to reset the timer.
The name of the timer to reset.
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
The ARN of the Lambda function that is executed.
You can configure the action payload when you send a message to a Lambda function.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends AWS IoT Events input, which passes information about the detector model instance and the event that triggered the action.
The name of the AWS IoT Events input where the data is sent.
You can configure the action payload when you send a message to an AWS IoT Events input.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.
The URL of the SQS queue where the data is written.
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
You can configure the action payload when you send a message to an Amazon SQS queue.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
The name of the Kinesis Data Firehose delivery stream where the data is written.
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: 'n' (newline), 't' (tab), 'rn' (Windows newline), ',' (comma).
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The data type for the hash key (also called the partition key). You can specify the following values:
If you don't specify hashKeyType , the default value is 'STRING' .
The name of the hash key (also called the partition key). The hashKeyField value must match the partition key of the target DynamoDB table.
The value of the hash key (also called the partition key).
The data type for the range key (also called the sort key), You can specify the following values:
If you don't specify rangeKeyField , the default value is 'STRING' .
The name of the range key (also called the sort key). The rangeKeyField value must match the sort key of the target DynamoDB table.
The value of the range key (also called the sort key).
The type of operation to perform. You can specify the following values:
If you don't specify this parameter, AWS IoT Events triggers the 'INSERT' operation.
The name of the DynamoDB column that receives the action payload.
If you don't specify this parameter, the name of the DynamoDB column is payload .
The name of the DynamoDB table. The tableName value must match the table name of the target DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The name of the DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an asset property in AWS IoT SiteWise .
A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier.
The ID of the asset that has the specified property.
The ID of the asset property.
The alias of the asset property.
The value to send to the asset property. This value contains timestamp, quality, and value (TQV) information.
The value to send to an asset property.
The asset property value is a string. You must use an expression, and the evaluated result should be a string.
The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.
The asset property value is a double. You must use an expression, and the evaluated result should be a double.
The asset property value is a Boolean value that must be 'TRUE' or 'FALSE' . You must use an expression, and the evaluated result should be a Boolean value.
The timestamp associated with the asset property value. The default is the current event time.
The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.
The nanosecond offset converted from timeInSeconds . The valid range is between 0-999999999.
The quality of the asset property value. The value must be 'GOOD' , 'BAD' , or 'UNCERTAIN' .
Specifies the actions performed, and the next state entered, when a condition evaluates to TRUE.
Specifies the actions performed and the next state entered when a condition evaluates to TRUE.
The name of the transition event.
Required. A Boolean expression that when TRUE causes the actions to be performed and the nextState to be entered.
The actions to be performed.
An action to be performed when the condition is TRUE.
Sets a variable to a specified value.
The name of the variable.
The new value of the variable.
Sends an Amazon SNS message.
The ARN of the Amazon SNS target where the message is sent.
You can configure the action payload when you send a message as an Amazon SNS push notification.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Publishes an MQTT message with the given topic to the AWS IoT message broker.
The MQTT topic of the message. You can use a string expression that includes variables ($variable.<variable-name> ) and input values ($input.<input-name>.<path-to-datum> ) as the topic string.
You can configure the action payload when you publish a message to an AWS IoT Core topic.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Information needed to set the timer.
The name of the timer.
The number of seconds until the timer expires. The minimum value is 60 seconds to ensure accuracy. The maximum value is 31622400 seconds.
The duration of the timer, in seconds. You can use a string expression that includes numbers, variables ($variable.<variable-name> ), and input values ($input.<input-name>.<path-to-datum> ) as the duration. The range of the duration is 1-31622400 seconds. To ensure accuracy, the minimum duration is 60 seconds. The evaluated result of the duration is rounded down to the nearest whole number.
Information needed to clear the timer.
The name of the timer to clear.
Information needed to reset the timer.
The name of the timer to reset.
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
The ARN of the Lambda function that is executed.
You can configure the action payload when you send a message to a Lambda function.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends AWS IoT Events input, which passes information about the detector model instance and the event that triggered the action.
The name of the AWS IoT Events input where the data is sent.
You can configure the action payload when you send a message to an AWS IoT Events input.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.
The URL of the SQS queue where the data is written.
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
You can configure the action payload when you send a message to an Amazon SQS queue.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
The name of the Kinesis Data Firehose delivery stream where the data is written.
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: 'n' (newline), 't' (tab), 'rn' (Windows newline), ',' (comma).
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The data type for the hash key (also called the partition key). You can specify the following values:
If you don't specify hashKeyType , the default value is 'STRING' .
The name of the hash key (also called the partition key). The hashKeyField value must match the partition key of the target DynamoDB table.
The value of the hash key (also called the partition key).
The data type for the range key (also called the sort key), You can specify the following values:
If you don't specify rangeKeyField , the default value is 'STRING' .
The name of the range key (also called the sort key). The rangeKeyField value must match the sort key of the target DynamoDB table.
The value of the range key (also called the sort key).
The type of operation to perform. You can specify the following values:
If you don't specify this parameter, AWS IoT Events triggers the 'INSERT' operation.
The name of the DynamoDB column that receives the action payload.
If you don't specify this parameter, the name of the DynamoDB column is payload .
The name of the DynamoDB table. The tableName value must match the table name of the target DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The name of the DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an asset property in AWS IoT SiteWise .
A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier.
The ID of the asset that has the specified property.
The ID of the asset property.
The alias of the asset property.
The value to send to the asset property. This value contains timestamp, quality, and value (TQV) information.
The value to send to an asset property.
The asset property value is a string. You must use an expression, and the evaluated result should be a string.
The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.
The asset property value is a double. You must use an expression, and the evaluated result should be a double.
The asset property value is a Boolean value that must be 'TRUE' or 'FALSE' . You must use an expression, and the evaluated result should be a Boolean value.
The timestamp associated with the asset property value. The default is the current event time.
The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.
The nanosecond offset converted from timeInSeconds . The valid range is between 0-999999999.
The quality of the asset property value. The value must be 'GOOD' , 'BAD' , or 'UNCERTAIN' .
The next state to enter.
When entering this state, perform these actions if the condition is TRUE.
Specifies the actions that are performed when the state is entered and the condition is TRUE .
Specifies the actions to be performed when the condition evaluates to TRUE.
The name of the event.
Optional. The Boolean expression that, when TRUE, causes the actions to be performed. If not present, the actions are performed (=TRUE). If the expression result is not a Boolean value, the actions are not performed (=FALSE).
The actions to be performed.
An action to be performed when the condition is TRUE.
Sets a variable to a specified value.
The name of the variable.
The new value of the variable.
Sends an Amazon SNS message.
The ARN of the Amazon SNS target where the message is sent.
You can configure the action payload when you send a message as an Amazon SNS push notification.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Publishes an MQTT message with the given topic to the AWS IoT message broker.
The MQTT topic of the message. You can use a string expression that includes variables ($variable.<variable-name> ) and input values ($input.<input-name>.<path-to-datum> ) as the topic string.
You can configure the action payload when you publish a message to an AWS IoT Core topic.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Information needed to set the timer.
The name of the timer.
The number of seconds until the timer expires. The minimum value is 60 seconds to ensure accuracy. The maximum value is 31622400 seconds.
The duration of the timer, in seconds. You can use a string expression that includes numbers, variables ($variable.<variable-name> ), and input values ($input.<input-name>.<path-to-datum> ) as the duration. The range of the duration is 1-31622400 seconds. To ensure accuracy, the minimum duration is 60 seconds. The evaluated result of the duration is rounded down to the nearest whole number.
Information needed to clear the timer.
The name of the timer to clear.
Information needed to reset the timer.
The name of the timer to reset.
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
The ARN of the Lambda function that is executed.
You can configure the action payload when you send a message to a Lambda function.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends AWS IoT Events input, which passes information about the detector model instance and the event that triggered the action.
The name of the AWS IoT Events input where the data is sent.
You can configure the action payload when you send a message to an AWS IoT Events input.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.
The URL of the SQS queue where the data is written.
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
You can configure the action payload when you send a message to an Amazon SQS queue.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
The name of the Kinesis Data Firehose delivery stream where the data is written.
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: 'n' (newline), 't' (tab), 'rn' (Windows newline), ',' (comma).
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The data type for the hash key (also called the partition key). You can specify the following values:
If you don't specify hashKeyType , the default value is 'STRING' .
The name of the hash key (also called the partition key). The hashKeyField value must match the partition key of the target DynamoDB table.
The value of the hash key (also called the partition key).
The data type for the range key (also called the sort key), You can specify the following values:
If you don't specify rangeKeyField , the default value is 'STRING' .
The name of the range key (also called the sort key). The rangeKeyField value must match the sort key of the target DynamoDB table.
The value of the range key (also called the sort key).
The type of operation to perform. You can specify the following values:
If you don't specify this parameter, AWS IoT Events triggers the 'INSERT' operation.
The name of the DynamoDB column that receives the action payload.
If you don't specify this parameter, the name of the DynamoDB column is payload .
The name of the DynamoDB table. The tableName value must match the table name of the target DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The name of the DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an asset property in AWS IoT SiteWise .
A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier.
The ID of the asset that has the specified property.
The ID of the asset property.
The alias of the asset property.
The value to send to the asset property. This value contains timestamp, quality, and value (TQV) information.
The value to send to an asset property.
The asset property value is a string. You must use an expression, and the evaluated result should be a string.
The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.
The asset property value is a double. You must use an expression, and the evaluated result should be a double.
The asset property value is a Boolean value that must be 'TRUE' or 'FALSE' . You must use an expression, and the evaluated result should be a Boolean value.
The timestamp associated with the asset property value. The default is the current event time.
The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.
The nanosecond offset converted from timeInSeconds . The valid range is between 0-999999999.
The quality of the asset property value. The value must be 'GOOD' , 'BAD' , or 'UNCERTAIN' .
When exiting this state, perform these actions if the specified condition is TRUE .
Specifies the actions that are performed when the state is exited and the condition is TRUE .
Specifies the actions to be performed when the condition evaluates to TRUE.
The name of the event.
Optional. The Boolean expression that, when TRUE, causes the actions to be performed. If not present, the actions are performed (=TRUE). If the expression result is not a Boolean value, the actions are not performed (=FALSE).
The actions to be performed.
An action to be performed when the condition is TRUE.
Sets a variable to a specified value.
The name of the variable.
The new value of the variable.
Sends an Amazon SNS message.
The ARN of the Amazon SNS target where the message is sent.
You can configure the action payload when you send a message as an Amazon SNS push notification.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Publishes an MQTT message with the given topic to the AWS IoT message broker.
The MQTT topic of the message. You can use a string expression that includes variables ($variable.<variable-name> ) and input values ($input.<input-name>.<path-to-datum> ) as the topic string.
You can configure the action payload when you publish a message to an AWS IoT Core topic.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Information needed to set the timer.
The name of the timer.
The number of seconds until the timer expires. The minimum value is 60 seconds to ensure accuracy. The maximum value is 31622400 seconds.
The duration of the timer, in seconds. You can use a string expression that includes numbers, variables ($variable.<variable-name> ), and input values ($input.<input-name>.<path-to-datum> ) as the duration. The range of the duration is 1-31622400 seconds. To ensure accuracy, the minimum duration is 60 seconds. The evaluated result of the duration is rounded down to the nearest whole number.
Information needed to clear the timer.
The name of the timer to clear.
Information needed to reset the timer.
The name of the timer to reset.
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
The ARN of the Lambda function that is executed.
You can configure the action payload when you send a message to a Lambda function.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends AWS IoT Events input, which passes information about the detector model instance and the event that triggered the action.
The name of the AWS IoT Events input where the data is sent.
You can configure the action payload when you send a message to an AWS IoT Events input.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.
The URL of the SQS queue where the data is written.
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
You can configure the action payload when you send a message to an Amazon SQS queue.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
The name of the Kinesis Data Firehose delivery stream where the data is written.
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: 'n' (newline), 't' (tab), 'rn' (Windows newline), ',' (comma).
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The data type for the hash key (also called the partition key). You can specify the following values:
If you don't specify hashKeyType , the default value is 'STRING' .
The name of the hash key (also called the partition key). The hashKeyField value must match the partition key of the target DynamoDB table.
The value of the hash key (also called the partition key).
The data type for the range key (also called the sort key), You can specify the following values:
If you don't specify rangeKeyField , the default value is 'STRING' .
The name of the range key (also called the sort key). The rangeKeyField value must match the sort key of the target DynamoDB table.
The value of the range key (also called the sort key).
The type of operation to perform. You can specify the following values:
If you don't specify this parameter, AWS IoT Events triggers the 'INSERT' operation.
The name of the DynamoDB column that receives the action payload.
If you don't specify this parameter, the name of the DynamoDB column is payload .
The name of the DynamoDB table. The tableName value must match the table name of the target DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have 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. For more information, see Actions in AWS IoT Events Developer Guide .
The name of the DynamoDB table.
Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
The content of the payload. You can use a string expression that includes quoted strings ('<string>' ), variables ($variable.<variable-name> ), input values ($input.<input-name>.<path-to-datum> ), string concatenations, and quoted strings that contain ${} as the content. The recommended maximum size of a content expression is 1 KB.
The value of the payload type can be either STRING or JSON .
Sends information about the detector model instance and the event that triggered the action to an asset property in AWS IoT SiteWise .
A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier.
The ID of the asset that has the specified property.
The ID of the asset property.
The alias of the asset property.
The value to send to the asset property. This value contains timestamp, quality, and value (TQV) information.
The value to send to an asset property.
The asset property value is a string. You must use an expression, and the evaluated result should be a string.
The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.
The asset property value is a double. You must use an expression, and the evaluated result should be a double.
The asset property value is a Boolean value that must be 'TRUE' or 'FALSE' . You must use an expression, and the evaluated result should be a Boolean value.
The timestamp associated with the asset property value. The default is the current event time.
The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.
The nanosecond offset converted from timeInSeconds . The valid range is between 0-999999999.
The quality of the asset property value. The value must be 'GOOD' , 'BAD' , or 'UNCERTAIN' .
The state that is entered at the creation of each detector (instance).
[REQUIRED]
The ARN of the role that grants permission to AWS IoT Events to perform its operations.
dict
Response Syntax
{
'detectorModelConfiguration': {
'detectorModelName': 'string',
'detectorModelVersion': 'string',
'detectorModelDescription': 'string',
'detectorModelArn': 'string',
'roleArn': 'string',
'creationTime': datetime(2015, 1, 1),
'lastUpdateTime': datetime(2015, 1, 1),
'status': 'ACTIVE'|'ACTIVATING'|'INACTIVE'|'DEPRECATED'|'DRAFT'|'PAUSED'|'FAILED',
'key': 'string',
'evaluationMethod': 'BATCH'|'SERIAL'
}
}
Response Structure
(dict) --
detectorModelConfiguration (dict) --
Information about how the detector model is configured.
detectorModelName (string) --
The name of the detector model.
detectorModelVersion (string) --
The version of the detector model.
detectorModelDescription (string) --
A brief description of the detector model.
detectorModelArn (string) --
The ARN of the detector model.
roleArn (string) --
The ARN of the role that grants permission to AWS IoT Events to perform its operations.
creationTime (datetime) --
The time the detector model was created.
lastUpdateTime (datetime) --
The time the detector model was last updated.
status (string) --
The status of the detector model.
key (string) --
The value used to identify a detector instance. When a device or system sends input, a new detector instance with a unique key value is created. AWS IoT Events can continue to route input to its corresponding detector instance based on this identifying information.
This parameter uses a JSON-path expression to select the attribute-value pair in the message payload that is used for identification. To route the message to the correct detector instance, the device must send a message payload that contains the same attribute-value.
evaluationMethod (string) --
Information about the order in which events are evaluated and how actions are executed.
Exceptions
Updates an input.
See also: AWS API Documentation
Request Syntax
response = client.update_input(
inputName='string',
inputDescription='string',
inputDefinition={
'attributes': [
{
'jsonPath': 'string'
},
]
}
)
[REQUIRED]
The name of the input you want to update.
[REQUIRED]
The definition of the input.
The attributes from the JSON payload that are made available by the input. Inputs are derived from messages sent to the AWS IoT Events system using BatchPutMessage . Each such message contains a JSON payload, and those attributes (and their paired values) specified here are available for use in the condition expressions used by detectors that monitor this input.
The attributes from the JSON payload that are made available by the input. Inputs are derived from messages sent to the AWS IoT Events system using BatchPutMessage . Each such message contains a JSON payload. Those attributes (and their paired values) specified here are available for use in the condition expressions used by detectors.
An expression that specifies an attribute-value pair in a JSON structure. Use this to specify an attribute from the JSON payload that is made available by the input. Inputs are derived from messages sent to AWS IoT Events (BatchPutMessage ). Each such message contains a JSON payload. The attribute (and its paired value) specified here are available for use in the condition expressions used by detectors.
Syntax: <field-name>.<field-name>...
dict
Response Syntax
{
'inputConfiguration': {
'inputName': 'string',
'inputDescription': 'string',
'inputArn': 'string',
'creationTime': datetime(2015, 1, 1),
'lastUpdateTime': datetime(2015, 1, 1),
'status': 'CREATING'|'UPDATING'|'ACTIVE'|'DELETING'
}
}
Response Structure
(dict) --
inputConfiguration (dict) --
Information about the configuration of the input.
inputName (string) --
The name of the input.
inputDescription (string) --
A brief description of the input.
inputArn (string) --
The ARN of the input.
creationTime (datetime) --
The time the input was created.
lastUpdateTime (datetime) --
The last time the input was updated.
status (string) --
The status of the input.
Exceptions
The available paginators are: