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

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.49 (2026-07-11)
7
+
8
+ ### Features
9
+
10
+ * **pulumi-aws:** add email/https/application SNS subscription protocols ([9c70d81](https://github.com/ReventlessDev/reventless-core/commit/9c70d81a92b7f28023850114868142aca828f5ff))
11
+
12
+
6
13
  # 2.4.0-alpha.48 (2026-07-11)
7
14
 
8
15
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reventlessdev/rescript-pulumi-aws",
3
- "version": "2.4.0-alpha.48",
3
+ "version": "2.4.0-alpha.49",
4
4
  "description": "ReScript bindings for @pulumi/aws",
5
5
  "license": "Apache-2.0",
6
6
  "jest": {
@@ -7,13 +7,22 @@ type t = {
7
7
  name: Pulumi.Output.t<string>,
8
8
  }
9
9
 
10
- type protocol = | @as("sqs") SQS | @as("sms") SMS | @as("lambda") Lambda
10
+ type protocol =
11
+ | @as("sqs") SQS
12
+ | @as("sms") SMS
13
+ | @as("lambda") Lambda
14
+ | @as("email") Email
15
+ | @as("email-json") EmailJson
16
+ | @as("http") Http
17
+ | @as("https") Https
18
+ | @as("application") Application
11
19
 
12
20
  type args = {
13
21
  endpoint: Pulumi.Input.t<string>,
14
22
  topic: Pulumi.Input.t<string>,
15
23
  protocol: protocol,
16
- rawMessageDelivery: Pulumi.Input.t<bool>,
24
+ // Only valid for the sqs/http(s) protocols; AWS rejects it for email/sms.
25
+ rawMessageDelivery?: Pulumi.Input.t<bool>,
17
26
  }
18
27
 
19
28
  @module("@pulumi/aws") @scope("sns") @new