cdk-tweet-queue 2.0.937 → 2.0.939

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/.jsii CHANGED
@@ -8499,7 +8499,7 @@
8499
8499
  "stability": "stable"
8500
8500
  },
8501
8501
  "homepage": "https://github.com/cdklabs/cdk-tweet-queue",
8502
- "jsiiVersion": "5.9.24 (build b849aae)",
8502
+ "jsiiVersion": "5.9.27 (build 260e132)",
8503
8503
  "keywords": [
8504
8504
  "aws-cdk@^2.20.0",
8505
8505
  "cdk",
@@ -8696,6 +8696,6 @@
8696
8696
  "symbolId": "lib/tweet-queue:TweetQueueProps"
8697
8697
  }
8698
8698
  },
8699
- "version": "2.0.937",
8700
- "fingerprint": "q3iMsA/NmoLh34SP5PzRdz0Gx3iiSgEM1OalAtNHTX0="
8699
+ "version": "2.0.939",
8700
+ "fingerprint": "liQmky3pljJ/gwTaAOS17kRp965q6ZNg2kFnpUQovu8="
8701
8701
  }
package/.jsii.tabl.json CHANGED
@@ -1 +1 @@
1
- {"version":"2","toolVersion":"5.8.23","snippets":{"119690a6198e7237013b2c6421795694ba7eadd1df3e21917b7a3c7db5367577":{"translations":{"python":{"source":"from cdk_tweet_queue import TweetQueue\n\n\nqueue = TweetQueue(self, \"TweetStream\",\n # this is the ARN of the secret you stored\n secret_arn=\"arn:aws:secretsmanager:us-east-1:1234567891234:secret:xxxxxxxxx\",\n\n # twitter search query\n # see https://developer.twitter.com/en/docs/tweets/search/guides/standard-operators\n query=\"#awscdk\",\n\n # optional properties\n interval_min=60, # optional: polling interval in minutes\n retention_period_sec=60, # optional: queue retention period\n visibility_timeout_sec=60\n)","version":"2"},"csharp":{"source":"using Cdklabs.CdkTweetQueue;\n\n\nvar queue = new TweetQueue(this, \"TweetStream\", new TweetQueueProps {\n // this is the ARN of the secret you stored\n SecretArn = \"arn:aws:secretsmanager:us-east-1:1234567891234:secret:xxxxxxxxx\",\n\n // twitter search query\n // see https://developer.twitter.com/en/docs/tweets/search/guides/standard-operators\n Query = \"#awscdk\",\n\n // optional properties\n IntervalMin = 60, // optional: polling interval in minutes\n RetentionPeriodSec = 60, // optional: queue retention period\n VisibilityTimeoutSec = 60\n});","version":"1"},"java":{"source":"import io.github.cdklabs.tweetqueue.TweetQueue;\n\n\nTweetQueue queue = TweetQueue.Builder.create(this, \"TweetStream\")\n // this is the ARN of the secret you stored\n .secretArn(\"arn:aws:secretsmanager:us-east-1:1234567891234:secret:xxxxxxxxx\")\n\n // twitter search query\n // see https://developer.twitter.com/en/docs/tweets/search/guides/standard-operators\n .query(\"#awscdk\")\n\n // optional properties\n .intervalMin(60) // optional: polling interval in minutes\n .retentionPeriodSec(60) // optional: queue retention period\n .visibilityTimeoutSec(60)\n .build();","version":"1"},"go":{"source":"import \"github.com/aws-samples/dummy/cdktweetqueue\"\n\n\nqueue := cdktweetqueue.NewTweetQueue(this, jsii.String(\"TweetStream\"), &TweetQueueProps{\n\t// this is the ARN of the secret you stored\n\tSecretArn: jsii.String(\"arn:aws:secretsmanager:us-east-1:1234567891234:secret:xxxxxxxxx\"),\n\n\t// twitter search query\n\t// see https://developer.twitter.com/en/docs/tweets/search/guides/standard-operators\n\tQuery: jsii.String(\"#awscdk\"),\n\n\t// optional properties\n\tIntervalMin: jsii.Number(60),\n\t // optional: polling interval in minutes\n\tRetentionPeriodSec: jsii.Number(60),\n\t // optional: queue retention period\n\tVisibilityTimeoutSec: jsii.Number(60),\n})","version":"1"},"$":{"source":"import { TweetQueue } from 'cdk-tweet-queue';\n\nconst queue = new TweetQueue(this, 'TweetStream', {\n // this is the ARN of the secret you stored\n secretArn: 'arn:aws:secretsmanager:us-east-1:1234567891234:secret:xxxxxxxxx',\n\n // twitter search query\n // see https://developer.twitter.com/en/docs/tweets/search/guides/standard-operators\n query: '#awscdk',\n\n // optional properties\n intervalMin: 60, // optional: polling interval in minutes\n retentionPeriodSec: 60, // optional: queue retention period\n visibilityTimeoutSec: 60, // optional: queue visilibity timeout\n});","version":"0"}},"location":{"api":{"api":"moduleReadme","moduleFqn":"cdk-tweet-queue"},"field":{"field":"markdown","line":53}},"didCompile":true,"fqnsReferenced":["cdk-tweet-queue.TweetQueue","cdk-tweet-queue.TweetQueueProps","constructs.Construct"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\nimport { TweetQueue } from 'cdk-tweet-queue';\n/// !hide\n// Hoisted imports ended before !hide marker above\n// Fixture with packages imported, but nothing else\nimport { Construct } from 'constructs';\nimport {\n Stack,\n} from 'aws-cdk-lib';\n\nclass Fixture extends Stack {\n constructor(scope: Construct, id: string) {\n super(scope, id);\n\n // Code snippet begins after !show marker below\n/// !show\n\n\nconst queue = new TweetQueue(this, 'TweetStream', {\n // this is the ARN of the secret you stored\n secretArn: 'arn:aws:secretsmanager:us-east-1:1234567891234:secret:xxxxxxxxx',\n\n // twitter search query\n // see https://developer.twitter.com/en/docs/tweets/search/guides/standard-operators\n query: '#awscdk',\n\n // optional properties\n intervalMin: 60, // optional: polling interval in minutes\n retentionPeriodSec: 60, // optional: queue retention period\n visibilityTimeoutSec: 60, // optional: queue visilibity timeout\n});\n/// !hide\n// Code snippet ended before !hide marker above\n }\n}","syntaxKindCounter":{"9":3,"11":4,"80":8,"110":1,"210":1,"214":1,"243":1,"260":1,"261":1,"272":1,"273":1,"275":1,"276":1,"303":5,"307":1},"fqnsFingerprint":"5bf1f2ec20c44c293599c2abb6106bb49fd320dd2c3f79857236b98a814f8897"}}}
1
+ {"version":"2","toolVersion":"5.9.30","snippets":{"119690a6198e7237013b2c6421795694ba7eadd1df3e21917b7a3c7db5367577":{"translations":{"python":{"source":"from cdk_tweet_queue import TweetQueue\n\n\nqueue = TweetQueue(self, \"TweetStream\",\n # this is the ARN of the secret you stored\n secret_arn=\"arn:aws:secretsmanager:us-east-1:1234567891234:secret:xxxxxxxxx\",\n\n # twitter search query\n # see https://developer.twitter.com/en/docs/tweets/search/guides/standard-operators\n query=\"#awscdk\",\n\n # optional properties\n interval_min=60, # optional: polling interval in minutes\n retention_period_sec=60, # optional: queue retention period\n visibility_timeout_sec=60\n)","version":"2"},"csharp":{"source":"using Cdklabs.CdkTweetQueue;\n\n\nvar queue = new TweetQueue(this, \"TweetStream\", new TweetQueueProps {\n // this is the ARN of the secret you stored\n SecretArn = \"arn:aws:secretsmanager:us-east-1:1234567891234:secret:xxxxxxxxx\",\n\n // twitter search query\n // see https://developer.twitter.com/en/docs/tweets/search/guides/standard-operators\n Query = \"#awscdk\",\n\n // optional properties\n IntervalMin = 60, // optional: polling interval in minutes\n RetentionPeriodSec = 60, // optional: queue retention period\n VisibilityTimeoutSec = 60\n});","version":"1"},"java":{"source":"import io.github.cdklabs.tweetqueue.TweetQueue;\n\n\nTweetQueue queue = TweetQueue.Builder.create(this, \"TweetStream\")\n // this is the ARN of the secret you stored\n .secretArn(\"arn:aws:secretsmanager:us-east-1:1234567891234:secret:xxxxxxxxx\")\n\n // twitter search query\n // see https://developer.twitter.com/en/docs/tweets/search/guides/standard-operators\n .query(\"#awscdk\")\n\n // optional properties\n .intervalMin(60) // optional: polling interval in minutes\n .retentionPeriodSec(60) // optional: queue retention period\n .visibilityTimeoutSec(60)\n .build();","version":"1"},"go":{"source":"import \"github.com/aws-samples/dummy/cdktweetqueue\"\n\n\nqueue := cdktweetqueue.NewTweetQueue(this, jsii.String(\"TweetStream\"), &TweetQueueProps{\n\t// this is the ARN of the secret you stored\n\tSecretArn: jsii.String(\"arn:aws:secretsmanager:us-east-1:1234567891234:secret:xxxxxxxxx\"),\n\n\t// twitter search query\n\t// see https://developer.twitter.com/en/docs/tweets/search/guides/standard-operators\n\tQuery: jsii.String(\"#awscdk\"),\n\n\t// optional properties\n\tIntervalMin: jsii.Number(60),\n\t // optional: polling interval in minutes\n\tRetentionPeriodSec: jsii.Number(60),\n\t // optional: queue retention period\n\tVisibilityTimeoutSec: jsii.Number(60),\n})","version":"1"},"$":{"source":"import { TweetQueue } from 'cdk-tweet-queue';\n\nconst queue = new TweetQueue(this, 'TweetStream', {\n // this is the ARN of the secret you stored\n secretArn: 'arn:aws:secretsmanager:us-east-1:1234567891234:secret:xxxxxxxxx',\n\n // twitter search query\n // see https://developer.twitter.com/en/docs/tweets/search/guides/standard-operators\n query: '#awscdk',\n\n // optional properties\n intervalMin: 60, // optional: polling interval in minutes\n retentionPeriodSec: 60, // optional: queue retention period\n visibilityTimeoutSec: 60, // optional: queue visilibity timeout\n});","version":"0"}},"location":{"api":{"api":"moduleReadme","moduleFqn":"cdk-tweet-queue"},"field":{"field":"markdown","line":53}},"didCompile":true,"fqnsReferenced":["cdk-tweet-queue.TweetQueue","cdk-tweet-queue.TweetQueueProps","constructs.Construct"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\nimport { TweetQueue } from 'cdk-tweet-queue';\n/// !hide\n// Hoisted imports ended before !hide marker above\n// Fixture with packages imported, but nothing else\nimport { Construct } from 'constructs';\nimport {\n Stack,\n} from 'aws-cdk-lib';\n\nclass Fixture extends Stack {\n constructor(scope: Construct, id: string) {\n super(scope, id);\n\n // Code snippet begins after !show marker below\n/// !show\n\n\nconst queue = new TweetQueue(this, 'TweetStream', {\n // this is the ARN of the secret you stored\n secretArn: 'arn:aws:secretsmanager:us-east-1:1234567891234:secret:xxxxxxxxx',\n\n // twitter search query\n // see https://developer.twitter.com/en/docs/tweets/search/guides/standard-operators\n query: '#awscdk',\n\n // optional properties\n intervalMin: 60, // optional: polling interval in minutes\n retentionPeriodSec: 60, // optional: queue retention period\n visibilityTimeoutSec: 60, // optional: queue visilibity timeout\n});\n/// !hide\n// Code snippet ended before !hide marker above\n }\n}","syntaxKindCounter":{"9":3,"11":4,"80":8,"110":1,"211":1,"215":1,"244":1,"261":1,"262":1,"273":1,"274":1,"276":1,"277":1,"304":5,"308":1},"fqnsFingerprint":"5bf1f2ec20c44c293599c2abb6106bb49fd320dd2c3f79857236b98a814f8897"}}}
package/API.md CHANGED
@@ -43,6 +43,7 @@ new TweetQueue(parent: Construct, id: string, props: TweetQueueProps)
43
43
  | **Name** | **Description** |
44
44
  | --- | --- |
45
45
  | <code><a href="#cdk-tweet-queue.TweetQueue.toString">toString</a></code> | Returns a string representation of this construct. |
46
+ | <code><a href="#cdk-tweet-queue.TweetQueue.with">with</a></code> | Applies one or more mixins to this construct. |
46
47
  | <code><a href="#cdk-tweet-queue.TweetQueue.applyRemovalPolicy">applyRemovalPolicy</a></code> | Apply the given removal policy to this resource. |
47
48
  | <code><a href="#cdk-tweet-queue.TweetQueue.addToResourcePolicy">addToResourcePolicy</a></code> | Adds a statement to the IAM resource policy associated with this queue. |
48
49
  | <code><a href="#cdk-tweet-queue.TweetQueue.grant">grant</a></code> | Grant the actions defined in queueActions to the identity Principal given on this SQS queue resource. |
@@ -71,6 +72,27 @@ public toString(): string
71
72
 
72
73
  Returns a string representation of this construct.
73
74
 
75
+ ##### `with` <a name="with" id="cdk-tweet-queue.TweetQueue.with"></a>
76
+
77
+ ```typescript
78
+ public with(mixins: ...IMixin[]): IConstruct
79
+ ```
80
+
81
+ Applies one or more mixins to this construct.
82
+
83
+ Mixins are applied in order. The list of constructs is captured at the
84
+ start of the call, so constructs added by a mixin will not be visited.
85
+ Use multiple `with()` calls if subsequent mixins should apply to added
86
+ constructs.
87
+
88
+ ###### `mixins`<sup>Required</sup> <a name="mixins" id="cdk-tweet-queue.TweetQueue.with.parameter.mixins"></a>
89
+
90
+ - *Type:* ...constructs.IMixin[]
91
+
92
+ The mixins to apply.
93
+
94
+ ---
95
+
74
96
  ##### `applyRemovalPolicy` <a name="applyRemovalPolicy" id="cdk-tweet-queue.TweetQueue.applyRemovalPolicy"></a>
75
97
 
76
98
  ```typescript
@@ -159,6 +181,9 @@ This will grant the following KMS permissions:
159
181
 
160
182
  - kms:Decrypt
161
183
 
184
+
185
+ The use of this method is discouraged. Please use `grants.consumeMessages()` instead.
186
+
162
187
  [disable-awslint:no-grants]
163
188
 
164
189
  ###### `grantee`<sup>Required</sup> <a name="grantee" id="cdk-tweet-queue.TweetQueue.grantConsumeMessages.parameter.grantee"></a>
@@ -203,6 +228,9 @@ This will grant the following permissions:
203
228
  - sqs:GetQueueAttributes
204
229
  - sqs:GetQueueUrl
205
230
 
231
+
232
+ The use of this method is discouraged. Please use `grants.purge()` instead.
233
+
206
234
  [disable-awslint:no-grants]
207
235
 
208
236
  ###### `grantee`<sup>Required</sup> <a name="grantee" id="cdk-tweet-queue.TweetQueue.grantPurge.parameter.grantee"></a>
@@ -236,6 +264,9 @@ This will grant the following KMS permissions:
236
264
  - kms:ReEncrypt*
237
265
  - kms:GenerateDataKey*
238
266
 
267
+
268
+ The use of this method is discouraged. Please use `grants.sendMessages()` instead.
269
+
239
270
  [disable-awslint:no-grants]
240
271
 
241
272
  ###### `grantee`<sup>Required</sup> <a name="grantee" id="cdk-tweet-queue.TweetQueue.grantSendMessages.parameter.grantee"></a>
@@ -52,5 +52,5 @@ class TweetQueue extends sqs.Queue {
52
52
  }
53
53
  exports.TweetQueue = TweetQueue;
54
54
  _a = JSII_RTTI_SYMBOL_1;
55
- TweetQueue[_a] = { fqn: "cdk-tweet-queue.TweetQueue", version: "2.0.937" };
55
+ TweetQueue[_a] = { fqn: "cdk-tweet-queue.TweetQueue", version: "2.0.939" };
56
56
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHdlZXQtcXVldWUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJ0d2VldC1xdWV1ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLDZCQUE2QjtBQUM3Qiw2Q0FBdUM7QUFDdkMscURBQXFEO0FBQ3JELGlEQUFpRDtBQUNqRCwwREFBMEQ7QUFDMUQsMkNBQTJDO0FBQzNDLHdEQUF3RDtBQUN4RCwyQ0FBMkM7QUF5QzNDLE1BQWEsVUFBVyxTQUFRLEdBQUcsQ0FBQyxLQUFLO0lBQ3ZDLFlBQVksTUFBaUIsRUFBRSxFQUFVLEVBQUUsS0FBc0I7UUFDL0QsS0FBSyxDQUFDLE1BQU0sRUFBRSxFQUFFLEVBQUU7WUFDaEIsZUFBZSxFQUFFLEtBQUssQ0FBQyxrQkFBa0IsS0FBSyxTQUFTLENBQUMsQ0FBQyxDQUFDLHNCQUFRLENBQUMsT0FBTyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsQ0FBQyxzQkFBUSxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsa0JBQWtCLENBQUM7WUFDM0gsaUJBQWlCLEVBQUUsS0FBSyxDQUFDLG9CQUFvQixLQUFLLFNBQVMsQ0FBQyxDQUFDLENBQUMsc0JBQVEsQ0FBQyxPQUFPLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLHNCQUFRLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQyxvQkFBb0IsQ0FBQztTQUNsSSxDQUFDLENBQUM7UUFFSCxNQUFNLE9BQU8sR0FBRyxJQUFJLENBQUM7UUFDckIsTUFBTSxLQUFLLEdBQUcsSUFBSSxRQUFRLENBQUMsS0FBSyxDQUFDLElBQUksRUFBRSxpQkFBaUIsRUFBRTtZQUN4RCxZQUFZLEVBQUUsRUFBRSxJQUFJLEVBQUUsT0FBTyxFQUFFLElBQUksRUFBRSxRQUFRLENBQUMsYUFBYSxDQUFDLE1BQU0sRUFBRTtTQUNyRSxDQUFDLENBQUM7UUFFSCxNQUFNLEVBQUUsR0FBRyxJQUFJLE1BQU0sQ0FBQyxjQUFjLENBQUMsSUFBSSxFQUFFLFFBQVEsRUFBRTtZQUNuRCxLQUFLLEVBQUUsSUFBSSxDQUFDLElBQUksQ0FBQyxTQUFTLEVBQUUsUUFBUSxFQUFFLFVBQVUsQ0FBQztZQUNqRCxPQUFPLEVBQUUsc0JBQVEsQ0FBQyxPQUFPLENBQUMsRUFBRSxDQUFDO1lBQzdCLFdBQVcsRUFBRTtnQkFDWCxrQkFBa0IsRUFBRSxLQUFLLENBQUMsU0FBUztnQkFDbkMsYUFBYSxFQUFFLEtBQUssQ0FBQyxLQUFLO2dCQUMxQixTQUFTLEVBQUUsSUFBSSxDQUFDLFFBQVE7Z0JBQ3hCLHFCQUFxQixFQUFFLEtBQUssQ0FBQyxTQUFTO2dCQUN0Qyx5QkFBeUIsRUFBRSxPQUFPO2FBQ25DO1NBQ0YsQ0FBQyxDQUFDO1FBRUgsRUFBRSxDQUFDLGVBQWUsQ0FBQyxJQUFJLEdBQUcsQ0FBQyxlQUFlLENBQUM7WUFDekMsU0FBUyxFQUFFLENBQUMsS0FBSyxDQUFDLFNBQVMsQ0FBQztZQUM1QixPQUFPLEVBQUUsQ0FBQywrQkFBK0IsQ0FBQztTQUMzQyxDQUFDLENBQUMsQ0FBQztRQUVKLEVBQUUsQ0FBQyxlQUFlLENBQUMsSUFBSSxHQUFHLENBQUMsZUFBZSxDQUFDO1lBQ3pDLFNBQVMsRUFBRSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUM7WUFDMUIsT0FBTyxFQUFFLENBQUMsaUJBQWlCLEVBQUUsc0JBQXNCLENBQUM7U0FDckQsQ0FBQyxDQUFDLENBQUM7UUFFSixLQUFLLENBQUMsa0JBQWtCLENBQUMsRUFBRSxDQUFDLENBQUM7UUFFN0IsTUFBTSxRQUFRLEdBQUcsS0FBSyxDQUFDLFdBQVcsS0FBSyxTQUFTLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLFdBQVcsQ0FBQztRQUN6RSxJQUFJLFFBQVEsR0FBRyxDQUFDLEVBQUUsQ0FBQztZQUNqQixNQUFNLEtBQUssR0FBRyxJQUFJLE1BQU0sQ0FBQyxJQUFJLENBQUMsSUFBSSxFQUFFLGNBQWMsRUFBRTtnQkFDbEQsUUFBUSxFQUFFLE1BQU0sQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLHNCQUFRLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxDQUFDO2FBQzNELENBQUMsQ0FBQztZQUVILEtBQUssQ0FBQyxTQUFTLENBQUMsSUFBSSxPQUFPLENBQUMsY0FBYyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUM7UUFDbEQsQ0FBQztJQUNILENBQUM7O0FBNUNILGdDQTZDQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCAqIGFzIHBhdGggZnJvbSAncGF0aCc7XG5pbXBvcnQgeyBEdXJhdGlvbiB9IGZyb20gJ2F3cy1jZGstbGliJztcbmltcG9ydCAqIGFzIGR5bmFtb2RiIGZyb20gJ2F3cy1jZGstbGliL2F3cy1keW5hbW9kYic7XG5pbXBvcnQgKiBhcyBldmVudHMgZnJvbSAnYXdzLWNkay1saWIvYXdzLWV2ZW50cyc7XG5pbXBvcnQgKiBhcyB0YXJnZXRzIGZyb20gJ2F3cy1jZGstbGliL2F3cy1ldmVudHMtdGFyZ2V0cyc7XG5pbXBvcnQgKiBhcyBpYW0gZnJvbSAnYXdzLWNkay1saWIvYXdzLWlhbSc7XG5pbXBvcnQgKiBhcyBsYW1iZGEgZnJvbSAnYXdzLWNkay1saWIvYXdzLWxhbWJkYS1ub2RlanMnO1xuaW1wb3J0ICogYXMgc3FzIGZyb20gJ2F3cy1jZGstbGliL2F3cy1zcXMnO1xuaW1wb3J0IHsgQ29uc3RydWN0IH0gZnJvbSAnY29uc3RydWN0cyc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgVHdlZXRRdWV1ZVByb3BzIHtcbiAgLyoqXG4gICAqIFRoZSBTZWNyZXRzTWFuYWdlciBzZWNyZXQgdGhhdCBjb250YWlucyBUd2l0dGVyIGF1dGhlbnRpY2F0aW9uIGNyZWRlbnRpYWxzXG4gICAqIGZyb20gaHR0cHM6Ly9hcHBzLnR3aXR0ZXIuY29tLyB3aXRoIHRoZSBmb2xsb3dpbmcgYXR0cmlidXRlcyAoZXhhY3QgbmFtZXMpOlxuICAgKiAgLSBjb25zdW1lcl9rZXlcbiAgICogIC0gY29uc3VtZXJfc2VjcmV0XG4gICAqICAtIGFjY2Vzc190b2tlbl9rZXlcbiAgICogIC0gYWNjZXNzX3Rva2VuX3NlY3JldFxuICAgKi9cbiAgcmVhZG9ubHkgc2VjcmV0QXJuOiBzdHJpbmc7XG5cbiAgLyoqXG4gICAqIFRoZSB0d2l0dGVyIHF1ZXJ5IHN0cmluZyB0byBzdHJlYW0uXG4gICAqL1xuICByZWFkb25seSBxdWVyeTogc3RyaW5nO1xuXG4gIC8qKlxuICAgKiBQb2xsaW5nIGludGVydmFsIGluIG1pbnV0ZXMuXG4gICAqIFNldCB0byAwIHRvIGRpc2FibGUgcG9sbGluZy5cbiAgICogQGRlZmF1bHQgMW1pblxuICAgKi9cbiAgcmVhZG9ubHkgaW50ZXJ2YWxNaW4/OiBudW1iZXI7XG5cbiAgLyoqXG4gICAqIE51bWJlciBvZiBzZWNvbmRzIGZvciBtZXNzYWdlcyB0byB3YWl0IGluIHRoZSBxdWV1ZSBmb3IgcHJvY2Vzc2luZy5cbiAgICogQWZ0ZXIgdGhpcyB0aW1lLCBtZXNzYWdlcyB3aWxsIGJlIHJlbW92ZWQgZnJvbSB0aGUgcXVldWUuXG4gICAqIEBkZWZhdWx0IDYwIHNlY29uZHNcbiAgICovXG4gIHJlYWRvbmx5IHJldGVudGlvblBlcmlvZFNlYz86IG51bWJlcjtcblxuICAvKipcbiAgICogTnVtYmVyIG9mIHNlY29uZHMgZm9yIG1lc3NhZ2VzIHRvIGJlIGludmlzaWJsZSB3aGlsZSB0aGV5IGFyZSBwcm9jZXNzZWQuXG4gICAqIEJhc2VkIG9uIHRoZSBhbW91bnQgb2YgdGltZSBpdCB3b3VsZCByZXF1aXJlIHRvIHByb2Nlc3MgYSBzaW5nbGUgbWVzc2FnZS5cbiAgICogQGRlZmF1bHQgNjAgc2Vjb25kc1xuICAgKi9cbiAgcmVhZG9ubHkgdmlzaWJpbGl0eVRpbWVvdXRTZWM/OiBudW1iZXI7XG59XG5cbmV4cG9ydCBjbGFzcyBUd2VldFF1ZXVlIGV4dGVuZHMgc3FzLlF1ZXVlIHtcbiAgY29uc3RydWN0b3IocGFyZW50OiBDb25zdHJ1Y3QsIGlkOiBzdHJpbmcsIHByb3BzOiBUd2VldFF1ZXVlUHJvcHMpIHtcbiAgICBzdXBlcihwYXJlbnQsIGlkLCB7XG4gICAgICByZXRlbnRpb25QZXJpb2Q6IHByb3BzLnJldGVudGlvblBlcmlvZFNlYyA9PT0gdW5kZWZpbmVkID8gRHVyYXRpb24uc2Vjb25kcyg2MCkgOiBEdXJhdGlvbi5zZWNvbmRzKHByb3BzLnJldGVudGlvblBlcmlvZFNlYyksXG4gICAgICB2aXNpYmlsaXR5VGltZW91dDogcHJvcHMudmlzaWJpbGl0eVRpbWVvdXRTZWMgPT09IHVuZGVmaW5lZCA/IER1cmF0aW9uLnNlY29uZHMoNjApIDogRHVyYXRpb24uc2Vjb25kcyhwcm9wcy52aXNpYmlsaXR5VGltZW91dFNlYyksXG4gICAgfSk7XG5cbiAgICBjb25zdCBrZXlOYW1lID0gJ2lkJztcbiAgICBjb25zdCB0YWJsZSA9IG5ldyBkeW5hbW9kYi5UYWJsZSh0aGlzLCAnQ2hlY2twb2ludFRhYmxlJywge1xuICAgICAgcGFydGl0aW9uS2V5OiB7IG5hbWU6IGtleU5hbWUsIHR5cGU6IGR5bmFtb2RiLkF0dHJpYnV0ZVR5cGUuU1RSSU5HIH0sXG4gICAgfSk7XG5cbiAgICBjb25zdCBmbiA9IG5ldyBsYW1iZGEuTm9kZWpzRnVuY3Rpb24odGhpcywgJ1BvbGxlcicsIHtcbiAgICAgIGVudHJ5OiBwYXRoLmpvaW4oX19kaXJuYW1lLCAncG9sbGVyJywgJ2luZGV4LnRzJyksXG4gICAgICB0aW1lb3V0OiBEdXJhdGlvbi5taW51dGVzKDE1KSxcbiAgICAgIGVudmlyb25tZW50OiB7XG4gICAgICAgIENSRURFTlRJQUxTX1NFQ1JFVDogcHJvcHMuc2VjcmV0QXJuLFxuICAgICAgICBUV0lUVEVSX1FVRVJZOiBwcm9wcy5xdWVyeSxcbiAgICAgICAgUVVFVUVfVVJMOiB0aGlzLnF1ZXVlVXJsLFxuICAgICAgICBDSEVDS1BPSU5UX1RBQkxFX05BTUU6IHRhYmxlLnRhYmxlTmFtZSxcbiAgICAgICAgQ0hFQ0tQT0lOVF9UQUJMRV9LRVlfTkFNRToga2V5TmFtZSxcbiAgICAgIH0sXG4gICAgfSk7XG5cbiAgICBmbi5hZGRUb1JvbGVQb2xpY3kobmV3IGlhbS5Qb2xpY3lTdGF0ZW1lbnQoe1xuICAgICAgcmVzb3VyY2VzOiBbcHJvcHMuc2VjcmV0QXJuXSxcbiAgICAgIGFjdGlvbnM6IFsnc2VjcmV0c21hbmFnZXI6R2V0U2VjcmV0VmFsdWUnXSxcbiAgICB9KSk7XG5cbiAgICBmbi5hZGRUb1JvbGVQb2xpY3kobmV3IGlhbS5Qb2xpY3lTdGF0ZW1lbnQoe1xuICAgICAgcmVzb3VyY2VzOiBbdGhpcy5xdWV1ZUFybl0sXG4gICAgICBhY3Rpb25zOiBbJ3NxczpTZW5kTWVzc2FnZScsICdzcXM6U2VuZE1lc3NhZ2VCYXRjaCddLFxuICAgIH0pKTtcblxuICAgIHRhYmxlLmdyYW50UmVhZFdyaXRlRGF0YShmbik7XG5cbiAgICBjb25zdCBpbnRlcnZhbCA9IHByb3BzLmludGVydmFsTWluID09PSB1bmRlZmluZWQgPyAxIDogcHJvcHMuaW50ZXJ2YWxNaW47XG4gICAgaWYgKGludGVydmFsID4gMCkge1xuICAgICAgY29uc3QgdGltZXIgPSBuZXcgZXZlbnRzLlJ1bGUodGhpcywgJ1BvbGxpbmdUaW1lcicsIHtcbiAgICAgICAgc2NoZWR1bGU6IGV2ZW50cy5TY2hlZHVsZS5yYXRlKER1cmF0aW9uLm1pbnV0ZXMoaW50ZXJ2YWwpKSxcbiAgICAgIH0pO1xuXG4gICAgICB0aW1lci5hZGRUYXJnZXQobmV3IHRhcmdldHMuTGFtYmRhRnVuY3Rpb24oZm4pKTtcbiAgICB9XG4gIH1cbn1cblxuIl19
package/package.json CHANGED
@@ -58,7 +58,7 @@
58
58
  "aws-sdk": "^2.1693.0",
59
59
  "cdklabs-projen-project-types": "^0.3.14",
60
60
  "commit-and-tag-version": "^12",
61
- "esbuild": "^0.27.2",
61
+ "esbuild": "^0.27.3",
62
62
  "eslint": "^9",
63
63
  "eslint-import-resolver-typescript": "^2.7.1",
64
64
  "eslint-plugin-import": "^2.32.0",
@@ -68,7 +68,7 @@
68
68
  "jsii-diff": "^1.126.0",
69
69
  "jsii-docgen": "^10.5.0",
70
70
  "jsii-pacmak": "^1.126.0",
71
- "jsii-rosetta": "~5.8.0",
71
+ "jsii-rosetta": "~5.9.30",
72
72
  "projen": "^0.99.8",
73
73
  "ts-node": "^10.9.2",
74
74
  "twitter": "^1.7.1",
@@ -79,8 +79,8 @@
79
79
  "constructs": "^10.0.5"
80
80
  },
81
81
  "dependencies": {
82
- "aws-cdk-lib": "^2.237.0",
83
- "constructs": "^10.4.5"
82
+ "aws-cdk-lib": "^2.239.0",
83
+ "constructs": "^10.5.1"
84
84
  },
85
85
  "keywords": [
86
86
  "aws-cdk@^2.20.0",
@@ -93,7 +93,7 @@
93
93
  "publishConfig": {
94
94
  "access": "public"
95
95
  },
96
- "version": "2.0.937",
96
+ "version": "2.0.939",
97
97
  "jest": {
98
98
  "coverageProvider": "v8",
99
99
  "testMatch": [