@reventlessdev/rescript-pulumi-aws 2.4.0-alpha.47 → 2.4.0-alpha.48

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/CHANGELOG.md CHANGED
@@ -3,6 +3,13 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # 2.4.0-alpha.48 (2026-07-11)
7
+
8
+ ### Features
9
+
10
+ * **monitoring:** deploy-time Monitoring hook seam for provisioned execution units ([30f1c23](https://github.com/ReventlessDev/reventless-core/commit/30f1c23ba118805dae83af9115341f4aff6db92b))
11
+
12
+
6
13
  # 2.4.0-alpha.47 (2026-07-08)
7
14
 
8
15
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reventlessdev/rescript-pulumi-aws",
3
- "version": "2.4.0-alpha.47",
3
+ "version": "2.4.0-alpha.48",
4
4
  "description": "ReScript bindings for @pulumi/aws",
5
5
  "license": "Apache-2.0",
6
6
  "jest": {
@@ -5,3 +5,4 @@ module EventRule = Cloudwatch_EventRule
5
5
  module EventTarget = Cloudwatch_EventTarget
6
6
  module LogGroup = Cloudwatch_LogGroup
7
7
  module LogMetricFilter = Cloudwatch_LogMetricFilter
8
+ module MetricAlarm = Cloudwatch_MetricAlarm
@@ -9,10 +9,13 @@ let LogGroup;
9
9
 
10
10
  let LogMetricFilter;
11
11
 
12
+ let MetricAlarm;
13
+
12
14
  export {
13
15
  EventRule,
14
16
  EventTarget,
15
17
  LogGroup,
16
18
  LogMetricFilter,
19
+ MetricAlarm,
17
20
  }
18
21
  /* No side effect */
@@ -0,0 +1,32 @@
1
+ /** @pulumi/aws/cloudwatch/metricalarm
2
+ see: https://www.pulumi.com/registry/packages/aws/api-docs/cloudwatch/metricalarm/
3
+ */
4
+
5
+ type t = {arn: Pulumi.Output.t<string>, id: Pulumi.Output.t<string>}
6
+
7
+ /** Single-metric alarm args. `comparisonOperator` uses CloudWatch's operator
8
+ names (e.g. `"GreaterThanOrEqualToThreshold"`); `statistic` is `"Sum"`,
9
+ `"Average"`, … ; `treatMissingData` is `"missing"`, `"notBreaching"`,
10
+ `"breaching"`, or `"ignore"`; `alarmActions` are ARNs (typically an SNS topic)
11
+ fired when the alarm enters ALARM state. */
12
+ type args = {
13
+ name?: Pulumi.Input.t<string>,
14
+ comparisonOperator: Pulumi.Input.t<string>,
15
+ evaluationPeriods: Pulumi.Input.t<int>,
16
+ metricName: Pulumi.Input.t<string>,
17
+ namespace: Pulumi.Input.t<string>,
18
+ /** Metric period in seconds. */
19
+ period: Pulumi.Input.t<int>,
20
+ statistic: Pulumi.Input.t<string>,
21
+ threshold: Pulumi.Input.t<float>,
22
+ /** Metric dimensions, e.g. `{"FunctionName": "AllAggregatesCmdHandler"}`. */
23
+ dimensions?: Pulumi.Input.t<Dict.t<string>>,
24
+ treatMissingData?: Pulumi.Input.t<string>,
25
+ alarmActions?: Pulumi.Input.t<array<Pulumi.Input.t<string>>>,
26
+ alarmDescription?: Pulumi.Input.t<string>,
27
+ tags?: Pulumi.Input.t<Aws.tags>,
28
+ }
29
+
30
+ @module("@pulumi/aws") @scope("cloudwatch") @new
31
+ external make: (~name: string, ~args: args, ~opts: Pulumi.CustomResourceOptions.t=?) => t =
32
+ "MetricAlarm"
@@ -0,0 +1,2 @@
1
+ // Generated by ReScript, PLEASE EDIT WITH CARE
2
+ /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */