cdk-tweet-queue 2.0.938 → 2.0.940

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
@@ -1020,6 +1020,19 @@
1020
1020
  }
1021
1021
  }
1022
1022
  },
1023
+ "aws-cdk-lib.aws_computeoptimizer": {
1024
+ "targets": {
1025
+ "dotnet": {
1026
+ "namespace": "Amazon.CDK.AWS.ComputeOptimizer"
1027
+ },
1028
+ "java": {
1029
+ "package": "software.amazon.awscdk.services.computeoptimizer"
1030
+ },
1031
+ "python": {
1032
+ "module": "aws_cdk.aws_computeoptimizer"
1033
+ }
1034
+ }
1035
+ },
1023
1036
  "aws-cdk-lib.aws_config": {
1024
1037
  "targets": {
1025
1038
  "dotnet": {
@@ -1241,6 +1254,19 @@
1241
1254
  }
1242
1255
  }
1243
1256
  },
1257
+ "aws-cdk-lib.aws_directconnect": {
1258
+ "targets": {
1259
+ "dotnet": {
1260
+ "namespace": "Amazon.CDK.AWS.DirectConnect"
1261
+ },
1262
+ "java": {
1263
+ "package": "software.amazon.awscdk.services.directconnect"
1264
+ },
1265
+ "python": {
1266
+ "module": "aws_cdk.aws_directconnect"
1267
+ }
1268
+ }
1269
+ },
1244
1270
  "aws-cdk-lib.aws_directoryservice": {
1245
1271
  "targets": {
1246
1272
  "dotnet": {
@@ -1423,6 +1449,19 @@
1423
1449
  }
1424
1450
  }
1425
1451
  },
1452
+ "aws-cdk-lib.aws_eks_v2": {
1453
+ "targets": {
1454
+ "dotnet": {
1455
+ "namespace": "Amazon.CDK.AWS.EKSv2"
1456
+ },
1457
+ "java": {
1458
+ "package": "software.amazon.awscdk.services.eks_v2"
1459
+ },
1460
+ "python": {
1461
+ "module": "aws_cdk.aws_eks_v2"
1462
+ }
1463
+ }
1464
+ },
1426
1465
  "aws-cdk-lib.aws_elasticache": {
1427
1466
  "targets": {
1428
1467
  "dotnet": {
@@ -5032,6 +5071,22 @@
5032
5071
  }
5033
5072
  }
5034
5073
  },
5074
+ "aws-cdk-lib.interfaces.aws_computeoptimizer": {
5075
+ "targets": {
5076
+ "dotnet": {
5077
+ "namespace": "Amazon.CDK.Interfaces.ComputeOptimizer"
5078
+ },
5079
+ "go": {
5080
+ "packageName": "interfacesawscomputeoptimizer"
5081
+ },
5082
+ "java": {
5083
+ "package": "software.amazon.awscdk.interfaces.computeoptimizer"
5084
+ },
5085
+ "python": {
5086
+ "module": "aws_cdk.interfaces.aws_computeoptimizer"
5087
+ }
5088
+ }
5089
+ },
5035
5090
  "aws-cdk-lib.interfaces.aws_config": {
5036
5091
  "targets": {
5037
5092
  "dotnet": {
@@ -5304,6 +5359,22 @@
5304
5359
  }
5305
5360
  }
5306
5361
  },
5362
+ "aws-cdk-lib.interfaces.aws_directconnect": {
5363
+ "targets": {
5364
+ "dotnet": {
5365
+ "namespace": "Amazon.CDK.Interfaces.DirectConnect"
5366
+ },
5367
+ "go": {
5368
+ "packageName": "interfacesawsdirectconnect"
5369
+ },
5370
+ "java": {
5371
+ "package": "software.amazon.awscdk.interfaces.directconnect"
5372
+ },
5373
+ "python": {
5374
+ "module": "aws_cdk.interfaces.aws_directconnect"
5375
+ }
5376
+ }
5377
+ },
5307
5378
  "aws-cdk-lib.interfaces.aws_directoryservice": {
5308
5379
  "targets": {
5309
5380
  "dotnet": {
@@ -8499,7 +8570,7 @@
8499
8570
  "stability": "stable"
8500
8571
  },
8501
8572
  "homepage": "https://github.com/cdklabs/cdk-tweet-queue",
8502
- "jsiiVersion": "5.9.25 (build bd30271)",
8573
+ "jsiiVersion": "5.9.27 (build 260e132)",
8503
8574
  "keywords": [
8504
8575
  "aws-cdk@^2.20.0",
8505
8576
  "cdk",
@@ -8696,6 +8767,6 @@
8696
8767
  "symbolId": "lib/tweet-queue:TweetQueueProps"
8697
8768
  }
8698
8769
  },
8699
- "version": "2.0.938",
8700
- "fingerprint": "Dhg6tnuROIa5LSpoer0TYXoS9w/UofwF6z+kZ/69VSA="
8770
+ "version": "2.0.940",
8771
+ "fingerprint": "Odn+g2gZD5470htXJlcU4xReY6YENjcZnUl5hRRNxrY="
8701
8772
  }
package/.jsii.tabl.json CHANGED
@@ -1 +1 @@
1
- {"version":"2","toolVersion":"5.9.28","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"}}}
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,25 @@ 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
+ ---
93
+
74
94
  ##### `applyRemovalPolicy` <a name="applyRemovalPolicy" id="cdk-tweet-queue.TweetQueue.applyRemovalPolicy"></a>
75
95
 
76
96
  ```typescript
@@ -159,6 +179,9 @@ This will grant the following KMS permissions:
159
179
 
160
180
  - kms:Decrypt
161
181
 
182
+
183
+ The use of this method is discouraged. Please use `grants.consumeMessages()` instead.
184
+
162
185
  [disable-awslint:no-grants]
163
186
 
164
187
  ###### `grantee`<sup>Required</sup> <a name="grantee" id="cdk-tweet-queue.TweetQueue.grantConsumeMessages.parameter.grantee"></a>
@@ -203,6 +226,9 @@ This will grant the following permissions:
203
226
  - sqs:GetQueueAttributes
204
227
  - sqs:GetQueueUrl
205
228
 
229
+
230
+ The use of this method is discouraged. Please use `grants.purge()` instead.
231
+
206
232
  [disable-awslint:no-grants]
207
233
 
208
234
  ###### `grantee`<sup>Required</sup> <a name="grantee" id="cdk-tweet-queue.TweetQueue.grantPurge.parameter.grantee"></a>
@@ -236,6 +262,9 @@ This will grant the following KMS permissions:
236
262
  - kms:ReEncrypt*
237
263
  - kms:GenerateDataKey*
238
264
 
265
+
266
+ The use of this method is discouraged. Please use `grants.sendMessages()` instead.
267
+
239
268
  [disable-awslint:no-grants]
240
269
 
241
270
  ###### `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.938" };
55
+ TweetQueue[_a] = { fqn: "cdk-tweet-queue.TweetQueue", version: "2.0.940" };
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.9.28",
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.238.0",
83
- "constructs": "^10.4.5"
82
+ "aws-cdk-lib": "^2.241.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.938",
96
+ "version": "2.0.940",
97
97
  "jest": {
98
98
  "coverageProvider": "v8",
99
99
  "testMatch": [