AWS IoT Events

2021/05/27 - AWS IoT Events - 7 new api methods

Changes  Releasing new APIs for AWS IoT Events Alarms

DeleteAlarmModel (new) Link ¶

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

client.delete_alarm_model(
    alarmModelName='string'
)
type alarmModelName

string

param alarmModelName

[REQUIRED]

The name of the alarm model.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) --

ListAlarmModels (new) Link ¶

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

client.list_alarm_models(
    nextToken='string',
    maxResults=123
)
type nextToken

string

param nextToken

The token that you can use to return the next set of results.

type maxResults

integer

param maxResults

The maximum number of results to be returned per request.

rtype

dict

returns

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.

UpdateAlarmModel (new) Link ¶

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

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
        }
    }
)
type alarmModelName

string

param alarmModelName

[REQUIRED]

The name of the alarm model.

type alarmModelDescription

string

param alarmModelDescription

The description of the alarm model.

type roleArn

string

param roleArn

[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 .

type severity

integer

param severity

A non-negative integer that reflects the severity level of the alarm.

type alarmRule

dict

param alarmRule

[REQUIRED]

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) -- [REQUIRED]

      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) -- [REQUIRED]

      The comparison operator.

    • threshold (string) -- [REQUIRED]

      The value on the right side of the comparison operator. You can enter a number or specify an AWS IoT Events input attribute.

type alarmNotification

dict

param alarmNotification

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) -- [REQUIRED]

        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) -- [REQUIRED]

            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) -- [REQUIRED]

              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) -- [REQUIRED]

              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) -- [REQUIRED]

            Specifies one or more recipients who receive the message.

            • (dict) --

              The information that identifies the recipient.

              • ssoIdentity (dict) --

                The AWS Single Sign-On (AWS SSO) authentication information.

                • identityStoreId (string) -- [REQUIRED]

                  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) -- [REQUIRED]

            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) -- [REQUIRED]

            Contains the information of one or more recipients who receive the emails.

            • 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) -- [REQUIRED]

                    The ID of the AWS SSO identity store.

                  • userId (string) --

                    The user ID.

type alarmEventActions

dict

param alarmEventActions

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) -- [REQUIRED]

          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) -- [REQUIRED]

            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) -- [REQUIRED]

            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) -- [REQUIRED]

          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) -- [REQUIRED]

            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) -- [REQUIRED]

            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) -- [REQUIRED]

          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) -- [REQUIRED]

            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) -- [REQUIRED]

            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) -- [REQUIRED]

          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) -- [REQUIRED]

            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) -- [REQUIRED]

            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) -- [REQUIRED]

          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) -- [REQUIRED]

            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) -- [REQUIRED]

            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) -- [REQUIRED]

          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) -- [REQUIRED]

            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) -- [REQUIRED]

            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 literal values, the expressions must contain single quotes. For example, the value for the hashKeyType parameter can be 'STRING' .

        • For references, you must specify either variables or input values. For example, the value for the hashKeyField parameter can be $input.GreenhouseInput.name .

        • For a substitution template, you must use ${} , and the template must be in single quotes. A substitution template can also contain a combination of literals, operators, functions, references, and substitution templates. In the following example, the value for the hashKeyValue parameter uses a substitution template. '${$input.GreenhouseInput.temperature * 6 / 5 + 32} in Fahrenheit'

        • For a string concatenation, you must use + . A string concatenation can also contain a combination of literals, operators, functions, references, and substitution templates. In the following example, the value for the tableName parameter uses a string concatenation. 'GreenhouseTemperatureTable ' + $input.GreenhouseInput.date

        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:

          • 'STRING' - The hash key is a string.

          • 'NUMBER' - The hash key is a number.

          If you don't specify hashKeyType , the default value is 'STRING' .

        • hashKeyField (string) -- [REQUIRED]

          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) -- [REQUIRED]

          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:

          • 'STRING' - The range key is a string.

          • 'NUMBER' - The range key is number.

          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:

          • 'INSERT' - Insert data as a new item into the DynamoDB table. This item uses the specified hash key as a partition key. If you specified a range key, the item uses the range key as a sort key.

          • 'UPDATE' - Update an existing item of the DynamoDB table with new data. This item's partition key must match the specified hash key. If you specified a range key, the range key must match the item's sort key.

          • 'DELETE' - Delete an existing item of the DynamoDB table. This item's partition key must match the specified hash key. If you specified a range key, the range key must match the item's sort key.

          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) -- [REQUIRED]

          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) -- [REQUIRED]

            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) -- [REQUIRED]

            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 literal values, the expressions must contain single quotes. For example, the value for the tableName parameter can be 'GreenhouseTemperatureTable' .

        • For references, you must specify either variables or input values. For example, the value for the tableName parameter can be $variable.ddbtableName .

        • For a substitution template, you must use ${} , and the template must be in single quotes. A substitution template can also contain a combination of literals, operators, functions, references, and substitution templates. In the following example, the value for the contentExpression parameter in Payload uses a substitution template. '{\"sensorID\": \"${$input.GreenhouseInput.sensor_id}\", \"temperature\": \"${$input.GreenhouseInput.temperature * 9 / 5 + 32}\"}'

        • For a string concatenation, you must use + . A string concatenation can also contain a combination of literals, operators, functions, references, and substitution templates. In the following example, the value for the tableName parameter uses a string concatenation. 'GreenhouseTemperatureTable ' + $input.GreenhouseInput.date

        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) -- [REQUIRED]

          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) -- [REQUIRED]

            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) -- [REQUIRED]

            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

        • For literal values, the expressions must contain single quotes. For example, the value for the propertyAlias parameter can be '/company/windfarm/3/turbine/7/temperature' .

        • For references, you must specify either variables or input values. For example, the value for the assetId parameter can be $input.TurbineInput.assetId1 .

        • For a substitution template, you must use ${} , and the template must be in single quotes. A substitution template can also contain a combination of literals, operators, functions, references, and substitution templates. In the following example, the value for the propertyAlias parameter uses a substitution template. 'company/windfarm/${$input.TemperatureInput.sensorData.windfarmID}/turbine/ ${$input.TemperatureInput.sensorData.turbineID}/temperature'

        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) -- [REQUIRED]

              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' .

type alarmCapabilities

dict

param alarmCapabilities

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) -- [REQUIRED]

      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) -- [REQUIRED]

      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.

rtype

dict

returns

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:

      • ACTIVE - The alarm model is active and it's ready to evaluate data.

      • ACTIVATING - AWS IoT Events is activating your alarm model. Activating an alarm model can take up to a few minutes.

      • INACTIVE - The alarm model is inactive, so it isn't ready to evaluate data. Check your alarm model information and update the alarm model.

      • FAILED - You couldn't create or update the alarm model. Check your alarm model information and try again.

ListInputRoutings (new) Link ¶

Lists one or more input routings.

See also: AWS API Documentation

Request Syntax

client.list_input_routings(
    inputIdentifier={
        'iotEventsInputIdentifier': {
            'inputName': 'string'
        },
        'iotSiteWiseInputIdentifier': {
            'iotSiteWiseAssetModelPropertyIdentifier': {
                'assetModelId': 'string',
                'propertyId': 'string'
            }
        }
    },
    maxResults=123,
    nextToken='string'
)
type inputIdentifier

dict

param inputIdentifier

[REQUIRED]

The identifer of the routed input.

  • iotEventsInputIdentifier (dict) --

    The identifier of the input routed to AWS IoT Events.

    • inputName (string) -- [REQUIRED]

      The name of the input routed to AWS IoT Events.

  • iotSiteWiseInputIdentifier (dict) --

    The identifer of the input routed from AWS IoT SiteWise.

    • iotSiteWiseAssetModelPropertyIdentifier (dict) --

      The identifier of the AWS IoT SiteWise asset model property.

      • assetModelId (string) -- [REQUIRED]

        The ID of the AWS IoT SiteWise asset model.

      • propertyId (string) -- [REQUIRED]

        The ID of the AWS IoT SiteWise asset property.

type maxResults

integer

param maxResults

The maximum number of results to be returned per request.

type nextToken

string

param nextToken

The token that you can use to return the next set of results.

rtype

dict

returns

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.

CreateAlarmModel (new) Link ¶

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

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
        }
    }
)
type alarmModelName

string

param alarmModelName

[REQUIRED]

A unique name that helps you identify the alarm model. You can't change this name after you create the alarm model.

type alarmModelDescription

string

param alarmModelDescription

A description that tells you what the alarm model detects.

type roleArn

string

param roleArn

[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 .

type tags

list

param tags

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.

  • (dict) --

    Metadata that can be used to manage the resource.

    • key (string) -- [REQUIRED]

      The tag's key.

    • value (string) -- [REQUIRED]

      The tag's value.

type key

string

param key

An input attribute used as a key to create an alarm. AWS IoT Events routes inputs associated with this key to the alarm.

type severity

integer

param severity

A non-negative integer that reflects the severity level of the alarm.

type alarmRule

dict

param alarmRule

[REQUIRED]

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) -- [REQUIRED]

      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) -- [REQUIRED]

      The comparison operator.

    • threshold (string) -- [REQUIRED]

      The value on the right side of the comparison operator. You can enter a number or specify an AWS IoT Events input attribute.

type alarmNotification

dict

param alarmNotification

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) -- [REQUIRED]

        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) -- [REQUIRED]

            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) -- [REQUIRED]

              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) -- [REQUIRED]

              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) -- [REQUIRED]

            Specifies one or more recipients who receive the message.

            • (dict) --

              The information that identifies the recipient.

              • ssoIdentity (dict) --

                The AWS Single Sign-On (AWS SSO) authentication information.

                • identityStoreId (string) -- [REQUIRED]

                  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) -- [REQUIRED]

            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) -- [REQUIRED]

            Contains the information of one or more recipients who receive the emails.

            • 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) -- [REQUIRED]

                    The ID of the AWS SSO identity store.

                  • userId (string) --

                    The user ID.

type alarmEventActions

dict

param alarmEventActions

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) -- [REQUIRED]

          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) -- [REQUIRED]

            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) -- [REQUIRED]

            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) -- [REQUIRED]

          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) -- [REQUIRED]

            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) -- [REQUIRED]

            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) -- [REQUIRED]

          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) -- [REQUIRED]

            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) -- [REQUIRED]

            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) -- [REQUIRED]

          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) -- [REQUIRED]

            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) -- [REQUIRED]

            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) -- [REQUIRED]

          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) -- [REQUIRED]

            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) -- [REQUIRED]

            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) -- [REQUIRED]

          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) -- [REQUIRED]

            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) -- [REQUIRED]

            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 literal values, the expressions must contain single quotes. For example, the value for the hashKeyType parameter can be 'STRING' .

        • For references, you must specify either variables or input values. For example, the value for the hashKeyField parameter can be $input.GreenhouseInput.name .

        • For a substitution template, you must use ${} , and the template must be in single quotes. A substitution template can also contain a combination of literals, operators, functions, references, and substitution templates. In the following example, the value for the hashKeyValue parameter uses a substitution template. '${$input.GreenhouseInput.temperature * 6 / 5 + 32} in Fahrenheit'

        • For a string concatenation, you must use + . A string concatenation can also contain a combination of literals, operators, functions, references, and substitution templates. In the following example, the value for the tableName parameter uses a string concatenation. 'GreenhouseTemperatureTable ' + $input.GreenhouseInput.date

        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:

          • 'STRING' - The hash key is a string.

          • 'NUMBER' - The hash key is a number.

          If you don't specify hashKeyType , the default value is 'STRING' .

        • hashKeyField (string) -- [REQUIRED]

          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) -- [REQUIRED]

          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:

          • 'STRING' - The range key is a string.

          • 'NUMBER' - The range key is number.

          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:

          • 'INSERT' - Insert data as a new item into the DynamoDB table. This item uses the specified hash key as a partition key. If you specified a range key, the item uses the range key as a sort key.

          • 'UPDATE' - Update an existing item of the DynamoDB table with new data. This item's partition key must match the specified hash key. If you specified a range key, the range key must match the item's sort key.

          • 'DELETE' - Delete an existing item of the DynamoDB table. This item's partition key must match the specified hash key. If you specified a range key, the range key must match the item's sort key.

          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) -- [REQUIRED]

          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) -- [REQUIRED]

            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) -- [REQUIRED]

            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 literal values, the expressions must contain single quotes. For example, the value for the tableName parameter can be 'GreenhouseTemperatureTable' .

        • For references, you must specify either variables or input values. For example, the value for the tableName parameter can be $variable.ddbtableName .

        • For a substitution template, you must use ${} , and the template must be in single quotes. A substitution template can also contain a combination of literals, operators, functions, references, and substitution templates. In the following example, the value for the contentExpression parameter in Payload uses a substitution template. '{\"sensorID\": \"${$input.GreenhouseInput.sensor_id}\", \"temperature\": \"${$input.GreenhouseInput.temperature * 9 / 5 + 32}\"}'

        • For a string concatenation, you must use + . A string concatenation can also contain a combination of literals, operators, functions, references, and substitution templates. In the following example, the value for the tableName parameter uses a string concatenation. 'GreenhouseTemperatureTable ' + $input.GreenhouseInput.date

        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) -- [REQUIRED]

          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) -- [REQUIRED]

            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) -- [REQUIRED]

            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

        • For literal values, the expressions must contain single quotes. For example, the value for the propertyAlias parameter can be '/company/windfarm/3/turbine/7/temperature' .

        • For references, you must specify either variables or input values. For example, the value for the assetId parameter can be $input.TurbineInput.assetId1 .

        • For a substitution template, you must use ${} , and the template must be in single quotes. A substitution template can also contain a combination of literals, operators, functions, references, and substitution templates. In the following example, the value for the propertyAlias parameter uses a substitution template. 'company/windfarm/${$input.TemperatureInput.sensorData.windfarmID}/turbine/ ${$input.TemperatureInput.sensorData.turbineID}/temperature'

        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) -- [REQUIRED]

              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' .

type alarmCapabilities

dict

param alarmCapabilities

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) -- [REQUIRED]

      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) -- [REQUIRED]

      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.

rtype

dict

returns

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:

      • ACTIVE - The alarm model is active and it's ready to evaluate data.

      • ACTIVATING - AWS IoT Events is activating your alarm model. Activating an alarm model can take up to a few minutes.

      • INACTIVE - The alarm model is inactive, so it isn't ready to evaluate data. Check your alarm model information and update the alarm model.

      • FAILED - You couldn't create or update the alarm model. Check your alarm model information and try again.

DescribeAlarmModel (new) Link ¶

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

client.describe_alarm_model(
    alarmModelName='string',
    alarmModelVersion='string'
)
type alarmModelName

string

param alarmModelName

[REQUIRED]

The name of the alarm model.

type alarmModelVersion

string

param alarmModelVersion

The version of the alarm model.

rtype

dict

returns

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:

      • ACTIVE - The alarm model is active and it's ready to evaluate data.

      • ACTIVATING - AWS IoT Events is activating your alarm model. Activating an alarm model can take up to a few minutes.

      • INACTIVE - The alarm model is inactive, so it isn't ready to evaluate data. Check your alarm model information and update the alarm model.

      • FAILED - You couldn't create or update the alarm model. Check your alarm model information and try again.

    • 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.

                • (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.

                • 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 literal values, the expressions must contain single quotes. For example, the value for the hashKeyType parameter can be 'STRING' .

            • For references, you must specify either variables or input values. For example, the value for the hashKeyField parameter can be $input.GreenhouseInput.name .

            • For a substitution template, you must use ${} , and the template must be in single quotes. A substitution template can also contain a combination of literals, operators, functions, references, and substitution templates. In the following example, the value for the hashKeyValue parameter uses a substitution template. '${$input.GreenhouseInput.temperature * 6 / 5 + 32} in Fahrenheit'

            • For a string concatenation, you must use + . A string concatenation can also contain a combination of literals, operators, functions, references, and substitution templates. In the following example, the value for the tableName parameter uses a string concatenation. 'GreenhouseTemperatureTable ' + $input.GreenhouseInput.date

            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:

              • 'STRING' - The hash key is a string.

              • 'NUMBER' - The hash key is a number.

              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:

              • 'STRING' - The range key is a string.

              • 'NUMBER' - The range key is number.

              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:

              • 'INSERT' - Insert data as a new item into the DynamoDB table. This item uses the specified hash key as a partition key. If you specified a range key, the item uses the range key as a sort key.

              • 'UPDATE' - Update an existing item of the DynamoDB table with new data. This item's partition key must match the specified hash key. If you specified a range key, the range key must match the item's sort key.

              • 'DELETE' - Delete an existing item of the DynamoDB table. This item's partition key must match the specified hash key. If you specified a range key, the range key must match the item's sort key.

              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 literal values, the expressions must contain single quotes. For example, the value for the tableName parameter can be 'GreenhouseTemperatureTable' .

            • For references, you must specify either variables or input values. For example, the value for the tableName parameter can be $variable.ddbtableName .

            • For a substitution template, you must use ${} , and the template must be in single quotes. A substitution template can also contain a combination of literals, operators, functions, references, and substitution templates. In the following example, the value for the contentExpression parameter in Payload uses a substitution template. '{\"sensorID\": \"${$input.GreenhouseInput.sensor_id}\", \"temperature\": \"${$input.GreenhouseInput.temperature * 9 / 5 + 32}\"}'

            • For a string concatenation, you must use + . A string concatenation can also contain a combination of literals, operators, functions, references, and substitution templates. In the following example, the value for the tableName parameter uses a string concatenation. 'GreenhouseTemperatureTable ' + $input.GreenhouseInput.date

            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

            • For literal values, the expressions must contain single quotes. For example, the value for the propertyAlias parameter can be '/company/windfarm/3/turbine/7/temperature' .

            • For references, you must specify either variables or input values. For example, the value for the assetId parameter can be $input.TurbineInput.assetId1 .

            • For a substitution template, you must use ${} , and the template must be in single quotes. A substitution template can also contain a combination of literals, operators, functions, references, and substitution templates. In the following example, the value for the propertyAlias parameter uses a substitution template. 'company/windfarm/${$input.TemperatureInput.sensorData.windfarmID}/turbine/ ${$input.TemperatureInput.sensorData.turbineID}/temperature'

            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.

ListAlarmModelVersions (new) Link ¶

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

client.list_alarm_model_versions(
    alarmModelName='string',
    nextToken='string',
    maxResults=123
)
type alarmModelName

string

param alarmModelName

[REQUIRED]

The name of the alarm model.

type nextToken

string

param nextToken

The token that you can use to return the next set of results.

type maxResults

integer

param maxResults

The maximum number of results to be returned per request.

rtype

dict

returns

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:

          • ACTIVE - The alarm model is active and it's ready to evaluate data.

          • ACTIVATING - AWS IoT Events is activating your alarm model. Activating an alarm model can take up to a few minutes.

          • INACTIVE - The alarm model is inactive, so it isn't ready to evaluate data. Check your alarm model information and update the alarm model.

          • FAILED - You couldn't create or update the alarm model. Check your alarm model information and try again.

        • 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.