Table of Contents
A low-level client representing AWS IoT Events:
import boto3
client = boto3.client('iotevents')
These are the available methods:
Check if an operation can be paginated.
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'
},
'iotTopicPublish': {
'mqttTopic': 'string'
},
'setTimer': {
'timerName': 'string',
'seconds': 123
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string'
},
'iotEvents': {
'inputName': 'string'
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string'
}
},
]
},
],
'transitionEvents': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string'
},
'iotTopicPublish': {
'mqttTopic': 'string'
},
'setTimer': {
'timerName': 'string',
'seconds': 123
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string'
},
'iotEvents': {
'inputName': 'string'
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string'
}
},
],
'nextState': 'string'
},
]
},
'onEnter': {
'events': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string'
},
'iotTopicPublish': {
'mqttTopic': 'string'
},
'setTimer': {
'timerName': 'string',
'seconds': 123
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string'
},
'iotEvents': {
'inputName': 'string'
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string'
}
},
]
},
]
},
'onExit': {
'events': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string'
},
'iotTopicPublish': {
'mqttTopic': 'string'
},
'setTimer': {
'timerName': 'string',
'seconds': 123
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string'
},
'iotEvents': {
'inputName': 'string'
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False
},
'firehose': {
'deliveryStreamName': 'string',
'separator': '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.
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.
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.
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.
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.
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.
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).
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.
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.
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.
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.
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.
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.
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).
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.
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.
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.
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.
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.
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.
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).
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.
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.
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.
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.
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.
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.
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).
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 input attribute key used to identify a device or system to create a detector (an instance of the detector model) and then to route each input received to the appropriate detector (instance). This parameter uses a JSON-path expression in the message payload of each input to specify the attribute-value pair that is used to identify the device associated with the input.
evaluationMethod (string) --
Information about the order in which events are evaluated and how actions are executed.
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.
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
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
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'
},
'iotTopicPublish': {
'mqttTopic': 'string'
},
'setTimer': {
'timerName': 'string',
'seconds': 123
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string'
},
'iotEvents': {
'inputName': 'string'
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string'
}
},
]
},
],
'transitionEvents': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string'
},
'iotTopicPublish': {
'mqttTopic': 'string'
},
'setTimer': {
'timerName': 'string',
'seconds': 123
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string'
},
'iotEvents': {
'inputName': 'string'
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string'
}
},
],
'nextState': 'string'
},
]
},
'onEnter': {
'events': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string'
},
'iotTopicPublish': {
'mqttTopic': 'string'
},
'setTimer': {
'timerName': 'string',
'seconds': 123
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string'
},
'iotEvents': {
'inputName': 'string'
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string'
}
},
]
},
]
},
'onExit': {
'events': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string'
},
'iotTopicPublish': {
'mqttTopic': 'string'
},
'setTimer': {
'timerName': 'string',
'seconds': 123
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string'
},
'iotEvents': {
'inputName': 'string'
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False
},
'firehose': {
'deliveryStreamName': 'string',
'separator': '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.
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.
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.
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.
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.
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.
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).
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.
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.
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.
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.
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.
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.
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).
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.
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.
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.
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.
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.
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.
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).
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.
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.
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.
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.
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.
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.
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).
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 input attribute key used to identify a device or system to create a detector (an instance of the detector model) and then to route each input received to the appropriate detector (instance). This parameter uses a JSON-path expression in the message payload of each input to specify the attribute-value pair that is used to identify the device associated with the input.
evaluationMethod (string) --
Information about the order in which events are evaluated and how actions are executed.
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>...
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).
Generate a presigned url given a client, its method, and arguments
The presigned url
Create a paginator for an operation.
Returns an object that can wait for some condition.
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) --
A token to retrieve the next set of results, or null if there are no additional results.
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) --
A token to retrieve the next set of results, or null if there are no additional results.
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) --
A token to retrieve the next set of results, or null if there are no additional results.
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.
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).
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
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
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'
},
'iotTopicPublish': {
'mqttTopic': 'string'
},
'setTimer': {
'timerName': 'string',
'seconds': 123
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string'
},
'iotEvents': {
'inputName': 'string'
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string'
}
},
]
},
],
'transitionEvents': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string'
},
'iotTopicPublish': {
'mqttTopic': 'string'
},
'setTimer': {
'timerName': 'string',
'seconds': 123
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string'
},
'iotEvents': {
'inputName': 'string'
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string'
}
},
],
'nextState': 'string'
},
]
},
'onEnter': {
'events': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string'
},
'iotTopicPublish': {
'mqttTopic': 'string'
},
'setTimer': {
'timerName': 'string',
'seconds': 123
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string'
},
'iotEvents': {
'inputName': 'string'
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False
},
'firehose': {
'deliveryStreamName': 'string',
'separator': 'string'
}
},
]
},
]
},
'onExit': {
'events': [
{
'eventName': 'string',
'condition': 'string',
'actions': [
{
'setVariable': {
'variableName': 'string',
'value': 'string'
},
'sns': {
'targetArn': 'string'
},
'iotTopicPublish': {
'mqttTopic': 'string'
},
'setTimer': {
'timerName': 'string',
'seconds': 123
},
'clearTimer': {
'timerName': 'string'
},
'resetTimer': {
'timerName': 'string'
},
'lambda': {
'functionArn': 'string'
},
'iotEvents': {
'inputName': 'string'
},
'sqs': {
'queueUrl': 'string',
'useBase64': True|False
},
'firehose': {
'deliveryStreamName': 'string',
'separator': '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.
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.
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.
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.
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.
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.
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).
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.
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.
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.
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.
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.
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.
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).
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.
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.
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.
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.
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.
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.
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).
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.
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.
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.
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.
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.
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.
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).
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 input attribute key used to identify a device or system to create a detector (an instance of the detector model) and then to route each input received to the appropriate detector (instance). This parameter uses a JSON-path expression in the message payload of each input to specify the attribute-value pair that is used to identify the device associated with the input.
evaluationMethod (string) --
Information about the order in which events are evaluated and how actions are executed.
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.
The available paginators are: