@pulumi/aws 5.33.0 → 5.34.0-alpha.1680034184
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/package.json +2 -2
- package/package.json.dev +2 -2
- package/sns/snsMixins.d.ts +31 -3
- package/sns/snsMixins.js +7 -0
- package/sns/snsMixins.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/aws",
|
|
3
|
-
"version": "v5.
|
|
3
|
+
"version": "v5.34.0-alpha.1680034184+263fd964",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource aws v5.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource aws v5.34.0-alpha.1680034184+263fd964"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0",
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/aws",
|
|
3
|
-
"version": "v5.
|
|
3
|
+
"version": "v5.34.0-alpha.1680034184+263fd964",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource aws v5.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource aws v5.34.0-alpha.1680034184+263fd964"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0",
|
package/sns/snsMixins.d.ts
CHANGED
|
@@ -32,10 +32,38 @@ export interface SNSMessageAttribute {
|
|
|
32
32
|
}
|
|
33
33
|
export type TopicEventHandler = lambda.EventHandler<TopicEvent, void>;
|
|
34
34
|
/**
|
|
35
|
-
* Arguments to control the topic subscription.
|
|
36
|
-
* future need.
|
|
35
|
+
* Arguments to control the topic subscription.
|
|
37
36
|
*/
|
|
38
|
-
export type TopicEventSubscriptionArgs = {
|
|
37
|
+
export type TopicEventSubscriptionArgs = {
|
|
38
|
+
/**
|
|
39
|
+
* Integer indicating number of minutes to wait in retrying mode for fetching subscription arn before marking it as failure. Only applicable for http and https protocols. Default is `1`.
|
|
40
|
+
*/
|
|
41
|
+
confirmationTimeoutInMinutes?: pulumi.Input<number>;
|
|
42
|
+
/**
|
|
43
|
+
* JSON String with the delivery policy (retries, backoff, etc.) that will be used in the subscription - this only applies to HTTP/S subscriptions. Refer to the [SNS docs](https://docs.aws.amazon.com/sns/latest/dg/DeliveryPolicies.html) for more details.
|
|
44
|
+
*/
|
|
45
|
+
deliveryPolicy?: pulumi.Input<string>;
|
|
46
|
+
/**
|
|
47
|
+
* Whether the endpoint is capable of [auto confirming subscription](http://docs.aws.amazon.com/sns/latest/dg/SendMessageToHttp.html#SendMessageToHttp.prepare) (e.g., PagerDuty). Default is `false`.
|
|
48
|
+
*/
|
|
49
|
+
endpointAutoConfirms?: pulumi.Input<boolean>;
|
|
50
|
+
/**
|
|
51
|
+
* JSON String with the filter policy that will be used in the subscription to filter messages seen by the target resource. Refer to the [SNS docs](https://docs.aws.amazon.com/sns/latest/dg/message-filtering.html) for more details.
|
|
52
|
+
*/
|
|
53
|
+
filterPolicy?: pulumi.Input<string>;
|
|
54
|
+
/**
|
|
55
|
+
* Whether the `filterPolicy` applies to `MessageAttributes` (default) or `MessageBody`.
|
|
56
|
+
*/
|
|
57
|
+
filterPolicyScope?: pulumi.Input<string>;
|
|
58
|
+
/**
|
|
59
|
+
* Whether to enable raw message delivery (the original message is directly passed, not wrapped in JSON with the original message in the message property). Default is `false`.
|
|
60
|
+
*/
|
|
61
|
+
rawMessageDelivery?: pulumi.Input<boolean>;
|
|
62
|
+
/**
|
|
63
|
+
* JSON String with the redrive policy that will be used in the subscription. Refer to the [SNS docs](https://docs.aws.amazon.com/sns/latest/dg/sns-dead-letter-queues.html#how-messages-moved-into-dead-letter-queue) for more details.
|
|
64
|
+
*/
|
|
65
|
+
redrivePolicy?: pulumi.Input<string>;
|
|
66
|
+
};
|
|
39
67
|
export declare class TopicEventSubscription extends lambda.EventSubscription {
|
|
40
68
|
readonly topic: topic.Topic;
|
|
41
69
|
/**
|
package/sns/snsMixins.js
CHANGED
|
@@ -36,6 +36,13 @@ class TopicEventSubscription extends lambda.EventSubscription {
|
|
|
36
36
|
topic: topic,
|
|
37
37
|
protocol: "lambda",
|
|
38
38
|
endpoint: this.func.arn,
|
|
39
|
+
confirmationTimeoutInMinutes: args.confirmationTimeoutInMinutes,
|
|
40
|
+
deliveryPolicy: args.deliveryPolicy,
|
|
41
|
+
endpointAutoConfirms: args.endpointAutoConfirms,
|
|
42
|
+
filterPolicy: args.filterPolicy,
|
|
43
|
+
filterPolicyScope: args.filterPolicyScope,
|
|
44
|
+
rawMessageDelivery: args.rawMessageDelivery,
|
|
45
|
+
redrivePolicy: args.redrivePolicy,
|
|
39
46
|
}, parentOpts);
|
|
40
47
|
this.registerOutputs();
|
|
41
48
|
}
|
package/sns/snsMixins.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"snsMixins.js","sourceRoot":"","sources":["../../sns/snsMixins.ts"],"names":[],"mappings":";AAAA,2CAA2C;AAC3C,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,iDAAiD;AACjD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;;;AAGjC,oCAAoC;AACpC,iCAAiC;AACjC,yDAAyD;AAEzD,kCAAkC;
|
|
1
|
+
{"version":3,"file":"snsMixins.js","sourceRoot":"","sources":["../../sns/snsMixins.ts"],"names":[],"mappings":";AAAA,2CAA2C;AAC3C,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,iDAAiD;AACjD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;;;AAGjC,oCAAoC;AACpC,iCAAiC;AACjC,yDAAyD;AAEzD,kCAAkC;AAoElC,MAAa,sBAAuB,SAAQ,MAAM,CAAC,iBAAiB;IAQhE,YACI,IAAY,EAAE,KAAkB,EAAE,OAA0B,EAC5D,OAAmC,EAAE,EAAE,OAAwC,EAAE;QAEjF,0FAA0F;QAC1F,iFAAiF;QACjF,KAAK,CAAC,gCAAgC,EAAE,IAAI,kBACxC,MAAM,EAAE,KAAK,IACV,KAAK,CAAC,SAAS,CAAC,IAAI,EAAE,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,EACnD,CAAC;QAEH,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QAEnB,MAAM,UAAU,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;QACpC,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,8BAA8B,CAAC,IAAI,EAAE,OAAO,EAAE,UAAU,CAAC,CAAC;QAE7E,IAAI,CAAC,UAAU,GAAG,IAAI,MAAM,CAAC,UAAU,CAAC,IAAI,EAAE;YAC1C,MAAM,EAAE,uBAAuB;YAC/B,QAAQ,EAAE,IAAI,CAAC,IAAI;YACnB,SAAS,EAAE,mBAAmB;YAC9B,SAAS,EAAE,KAAK,CAAC,EAAE;SACtB,EAAE,UAAU,CAAC,CAAC;QAEf,IAAI,CAAC,YAAY,GAAG,IAAI,iBAAiB,CAAC,iBAAiB,CAAC,IAAI,EAAE;YAC9D,KAAK,EAAE,KAAK;YACZ,QAAQ,EAAE,QAAQ;YAClB,QAAQ,EAAE,IAAI,CAAC,IAAI,CAAC,GAAG;YACvB,4BAA4B,EAAE,IAAI,CAAC,4BAA4B;YAC/D,cAAc,EAAE,IAAI,CAAC,cAAc;YACnC,oBAAoB,EAAE,IAAI,CAAC,oBAAoB;YAC/C,YAAY,EAAE,IAAI,CAAC,YAAY;YAC/B,iBAAiB,EAAE,IAAI,CAAC,iBAAiB;YACzC,kBAAkB,EAAE,IAAI,CAAC,kBAAkB;YAC3C,aAAa,EAAE,IAAI,CAAC,aAAa;SACpC,EAAE,UAAU,CAAC,CAAC;QAEf,IAAI,CAAC,eAAe,EAAE,CAAC;IAC3B,CAAC;CACJ;AA9CD,wDA8CC;AAcD,KAAK,CAAC,KAAK,CAAC,SAAS,CAAC,OAAO,GAAG,UAA6B,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,IAAI;IAClF,OAAO,IAAI,sBAAsB,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;AACvE,CAAC,CAAA"}
|