@awboost/cfn-resource-types 0.1.159 → 0.1.161
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/AWS-B2BI-Capability.d.ts +6 -0
- package/lib/AWS-B2BI-Partnership.d.ts +128 -1
- package/lib/AWS-B2BI-Transformer.d.ts +89 -4
- package/lib/AWS-CloudFormation-CustomResource.d.ts +1 -0
- package/lib/AWS-EMR-Cluster.d.ts +37 -0
- package/lib/AWS-EMR-InstanceFleetConfig.d.ts +37 -0
- package/lib/AWS-IoT-DomainConfiguration.d.ts +14 -0
- package/lib/AWS-IoTEvents-AlarmModel.d.ts +200 -129
- package/lib/AWS-IoTEvents-AlarmModel.js +2 -3
- package/lib/AWS-IoTEvents-DetectorModel.d.ts +173 -124
- package/lib/AWS-IoTEvents-DetectorModel.js +5 -1
- package/lib/AWS-IoTEvents-Input.d.ts +10 -12
- package/lib/AWS-IoTEvents-Input.js +1 -1
- package/lib/AWS-S3-Bucket.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
|
|
5
|
-
Alarms are instances of alarm models. The alarm model specifies what to detect, when to send notifications, who gets notified, and more. You can also specify one or more supported actions that occur when the alarm state changes. AWS IoT Events routes input attributes derived from your data to the appropriate alarms. If the data that you're monitoring is outside the specified range, the alarm is invoked. You can also acknowledge the alarms or set them to the snooze mode.
|
|
3
|
+
* Resource type definition for `AWS::IoTEvents::AlarmModel`.
|
|
4
|
+
* Represents an alarm model to monitor an ITE 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](https://docs.aws.amazon.com/iotevents/latest/developerguide/create-alarms.html) in the *Developer Guide*.
|
|
6
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-alarmmodel.html}
|
|
7
6
|
*/
|
|
8
7
|
export class IoTEventsAlarmModel extends $Resource {
|