cdk-tweet-queue 2.0.952 → 2.0.954

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
@@ -8966,7 +8966,7 @@
8966
8966
  "stability": "stable"
8967
8967
  },
8968
8968
  "homepage": "https://github.com/cdklabs/cdk-tweet-queue",
8969
- "jsiiVersion": "5.9.41 (build 8930737)",
8969
+ "jsiiVersion": "5.9.44 (build 150b837)",
8970
8970
  "keywords": [
8971
8971
  "aws-cdk@^2.20.0",
8972
8972
  "cdk",
@@ -9163,6 +9163,6 @@
9163
9163
  "symbolId": "lib/tweet-queue:TweetQueueProps"
9164
9164
  }
9165
9165
  },
9166
- "version": "2.0.952",
9167
- "fingerprint": "xpIUrxZ48M7YS54moXevmnBPiaU5ZwRfSrofE6a+5Nk="
9166
+ "version": "2.0.954",
9167
+ "fingerprint": "iuTnyG6dn1KGyepcKCoW59TuZd33A4AJeS0j85B8qFk="
9168
9168
  }
package/.jsii.tabl.json CHANGED
@@ -1 +1 @@
1
- {"version":"2","toolVersion":"5.9.46","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.49","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
@@ -44,6 +44,7 @@ new TweetQueue(parent: Construct, id: string, props: TweetQueueProps)
44
44
  | --- | --- |
45
45
  | <code><a href="#cdk-tweet-queue.TweetQueue.toString">toString</a></code> | Returns a string representation of this construct. |
46
46
  | <code><a href="#cdk-tweet-queue.TweetQueue.with">with</a></code> | Applies one or more mixins to this construct. |
47
+ | <code><a href="#cdk-tweet-queue.TweetQueue.applyCrossStackReferenceStrength">applyCrossStackReferenceStrength</a></code> | Override the cross-stack reference strength for this resource. |
47
48
  | <code><a href="#cdk-tweet-queue.TweetQueue.applyRemovalPolicy">applyRemovalPolicy</a></code> | Apply the given removal policy to this resource. |
48
49
  | <code><a href="#cdk-tweet-queue.TweetQueue.addToResourcePolicy">addToResourcePolicy</a></code> | Adds a statement to the IAM resource policy associated with this queue. |
49
50
  | <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. |
@@ -91,6 +92,28 @@ constructs.
91
92
 
92
93
  ---
93
94
 
95
+ ##### `applyCrossStackReferenceStrength` <a name="applyCrossStackReferenceStrength" id="cdk-tweet-queue.TweetQueue.applyCrossStackReferenceStrength"></a>
96
+
97
+ ```typescript
98
+ public applyCrossStackReferenceStrength(strength: ReferenceStrength): void
99
+ ```
100
+
101
+ Override the cross-stack reference strength for this resource.
102
+
103
+ When set, any cross-stack reference to this resource will use the specified
104
+ mechanism instead of the global default determined by the
105
+ `@aws-cdk/core:defaultCrossStackReferences` context key. This is useful for
106
+ selectively weakening specific references to avoid the "deadly embrace" problem
107
+ without changing the app-wide default.
108
+
109
+ ###### `strength`<sup>Required</sup> <a name="strength" id="cdk-tweet-queue.TweetQueue.applyCrossStackReferenceStrength.parameter.strength"></a>
110
+
111
+ - *Type:* aws-cdk-lib.ReferenceStrength
112
+
113
+ The reference strength to use for this resource.
114
+
115
+ ---
116
+
94
117
  ##### `applyRemovalPolicy` <a name="applyRemovalPolicy" id="cdk-tweet-queue.TweetQueue.applyRemovalPolicy"></a>
95
118
 
96
119
  ```typescript
@@ -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.952" };
55
+ TweetQueue[_a] = { fqn: "cdk-tweet-queue.TweetQueue", version: "2.0.954" };
56
56
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHdlZXQtcXVldWUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJ0d2VldC1xdWV1ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLDZCQUE2QjtBQUM3Qiw2Q0FBdUM7QUFDdkMscURBQXFEO0FBQ3JELGlEQUFpRDtBQUNqRCwwREFBMEQ7QUFDMUQsMkNBQTJDO0FBQzNDLHdEQUF3RDtBQUN4RCwyQ0FBMkM7QUF5QzNDLE1BQWEsVUFBVyxTQUFRLEdBQUcsQ0FBQyxLQUFLO0lBQ3ZDLFlBQVksTUFBaUIsRUFBRSxFQUFVLEVBQUUsS0FBc0I7UUFDL0QsS0FBSyxDQUFDLE1BQU0sRUFBRSxFQUFFLEVBQUU7WUFDaEIsZUFBZSxFQUFFLEtBQUssQ0FBQyxrQkFBa0IsS0FBSyxTQUFTLENBQUMsQ0FBQyxDQUFDLHNCQUFRLENBQUMsT0FBTyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsQ0FBQyxzQkFBUSxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsa0JBQWtCLENBQUM7WUFDM0gsaUJBQWlCLEVBQUUsS0FBSyxDQUFDLG9CQUFvQixLQUFLLFNBQVMsQ0FBQyxDQUFDLENBQUMsc0JBQVEsQ0FBQyxPQUFPLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLHNCQUFRLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQyxvQkFBb0IsQ0FBQztTQUNsSSxDQUFDLENBQUM7UUFFSCxNQUFNLE9BQU8sR0FBRyxJQUFJLENBQUM7UUFDckIsTUFBTSxLQUFLLEdBQUcsSUFBSSxRQUFRLENBQUMsS0FBSyxDQUFDLElBQUksRUFBRSxpQkFBaUIsRUFBRTtZQUN4RCxZQUFZLEVBQUUsRUFBRSxJQUFJLEVBQUUsT0FBTyxFQUFFLElBQUksRUFBRSxRQUFRLENBQUMsYUFBYSxDQUFDLE1BQU0sRUFBRTtTQUNyRSxDQUFDLENBQUM7UUFFSCxNQUFNLEVBQUUsR0FBRyxJQUFJLE1BQU0sQ0FBQyxjQUFjLENBQUMsSUFBSSxFQUFFLFFBQVEsRUFBRTtZQUNuRCxLQUFLLEVBQUUsSUFBSSxDQUFDLElBQUksQ0FBQyxTQUFTLEVBQUUsUUFBUSxFQUFFLFVBQVUsQ0FBQztZQUNqRCxPQUFPLEVBQUUsc0JBQVEsQ0FBQyxPQUFPLENBQUMsRUFBRSxDQUFDO1lBQzdCLFdBQVcsRUFBRTtnQkFDWCxrQkFBa0IsRUFBRSxLQUFLLENBQUMsU0FBUztnQkFDbkMsYUFBYSxFQUFFLEtBQUssQ0FBQyxLQUFLO2dCQUMxQixTQUFTLEVBQUUsSUFBSSxDQUFDLFFBQVE7Z0JBQ3hCLHFCQUFxQixFQUFFLEtBQUssQ0FBQyxTQUFTO2dCQUN0Qyx5QkFBeUIsRUFBRSxPQUFPO2FBQ25DO1NBQ0YsQ0FBQyxDQUFDO1FBRUgsRUFBRSxDQUFDLGVBQWUsQ0FBQyxJQUFJLEdBQUcsQ0FBQyxlQUFlLENBQUM7WUFDekMsU0FBUyxFQUFFLENBQUMsS0FBSyxDQUFDLFNBQVMsQ0FBQztZQUM1QixPQUFPLEVBQUUsQ0FBQywrQkFBK0IsQ0FBQztTQUMzQyxDQUFDLENBQUMsQ0FBQztRQUVKLEVBQUUsQ0FBQyxlQUFlLENBQUMsSUFBSSxHQUFHLENBQUMsZUFBZSxDQUFDO1lBQ3pDLFNBQVMsRUFBRSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUM7WUFDMUIsT0FBTyxFQUFFLENBQUMsaUJBQWlCLEVBQUUsc0JBQXNCLENBQUM7U0FDckQsQ0FBQyxDQUFDLENBQUM7UUFFSixLQUFLLENBQUMsa0JBQWtCLENBQUMsRUFBRSxDQUFDLENBQUM7UUFFN0IsTUFBTSxRQUFRLEdBQUcsS0FBSyxDQUFDLFdBQVcsS0FBSyxTQUFTLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLFdBQVcsQ0FBQztRQUN6RSxJQUFJLFFBQVEsR0FBRyxDQUFDLEVBQUUsQ0FBQztZQUNqQixNQUFNLEtBQUssR0FBRyxJQUFJLE1BQU0sQ0FBQyxJQUFJLENBQUMsSUFBSSxFQUFFLGNBQWMsRUFBRTtnQkFDbEQsUUFBUSxFQUFFLE1BQU0sQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLHNCQUFRLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxDQUFDO2FBQzNELENBQUMsQ0FBQztZQUVILEtBQUssQ0FBQyxTQUFTLENBQUMsSUFBSSxPQUFPLENBQUMsY0FBYyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUM7UUFDbEQsQ0FBQztJQUNILENBQUM7O0FBNUNILGdDQTZDQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCAqIGFzIHBhdGggZnJvbSAncGF0aCc7XG5pbXBvcnQgeyBEdXJhdGlvbiB9IGZyb20gJ2F3cy1jZGstbGliJztcbmltcG9ydCAqIGFzIGR5bmFtb2RiIGZyb20gJ2F3cy1jZGstbGliL2F3cy1keW5hbW9kYic7XG5pbXBvcnQgKiBhcyBldmVudHMgZnJvbSAnYXdzLWNkay1saWIvYXdzLWV2ZW50cyc7XG5pbXBvcnQgKiBhcyB0YXJnZXRzIGZyb20gJ2F3cy1jZGstbGliL2F3cy1ldmVudHMtdGFyZ2V0cyc7XG5pbXBvcnQgKiBhcyBpYW0gZnJvbSAnYXdzLWNkay1saWIvYXdzLWlhbSc7XG5pbXBvcnQgKiBhcyBsYW1iZGEgZnJvbSAnYXdzLWNkay1saWIvYXdzLWxhbWJkYS1ub2RlanMnO1xuaW1wb3J0ICogYXMgc3FzIGZyb20gJ2F3cy1jZGstbGliL2F3cy1zcXMnO1xuaW1wb3J0IHsgQ29uc3RydWN0IH0gZnJvbSAnY29uc3RydWN0cyc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgVHdlZXRRdWV1ZVByb3BzIHtcbiAgLyoqXG4gICAqIFRoZSBTZWNyZXRzTWFuYWdlciBzZWNyZXQgdGhhdCBjb250YWlucyBUd2l0dGVyIGF1dGhlbnRpY2F0aW9uIGNyZWRlbnRpYWxzXG4gICAqIGZyb20gaHR0cHM6Ly9hcHBzLnR3aXR0ZXIuY29tLyB3aXRoIHRoZSBmb2xsb3dpbmcgYXR0cmlidXRlcyAoZXhhY3QgbmFtZXMpOlxuICAgKiAgLSBjb25zdW1lcl9rZXlcbiAgICogIC0gY29uc3VtZXJfc2VjcmV0XG4gICAqICAtIGFjY2Vzc190b2tlbl9rZXlcbiAgICogIC0gYWNjZXNzX3Rva2VuX3NlY3JldFxuICAgKi9cbiAgcmVhZG9ubHkgc2VjcmV0QXJuOiBzdHJpbmc7XG5cbiAgLyoqXG4gICAqIFRoZSB0d2l0dGVyIHF1ZXJ5IHN0cmluZyB0byBzdHJlYW0uXG4gICAqL1xuICByZWFkb25seSBxdWVyeTogc3RyaW5nO1xuXG4gIC8qKlxuICAgKiBQb2xsaW5nIGludGVydmFsIGluIG1pbnV0ZXMuXG4gICAqIFNldCB0byAwIHRvIGRpc2FibGUgcG9sbGluZy5cbiAgICogQGRlZmF1bHQgMW1pblxuICAgKi9cbiAgcmVhZG9ubHkgaW50ZXJ2YWxNaW4/OiBudW1iZXI7XG5cbiAgLyoqXG4gICAqIE51bWJlciBvZiBzZWNvbmRzIGZvciBtZXNzYWdlcyB0byB3YWl0IGluIHRoZSBxdWV1ZSBmb3IgcHJvY2Vzc2luZy5cbiAgICogQWZ0ZXIgdGhpcyB0aW1lLCBtZXNzYWdlcyB3aWxsIGJlIHJlbW92ZWQgZnJvbSB0aGUgcXVldWUuXG4gICAqIEBkZWZhdWx0IDYwIHNlY29uZHNcbiAgICovXG4gIHJlYWRvbmx5IHJldGVudGlvblBlcmlvZFNlYz86IG51bWJlcjtcblxuICAvKipcbiAgICogTnVtYmVyIG9mIHNlY29uZHMgZm9yIG1lc3NhZ2VzIHRvIGJlIGludmlzaWJsZSB3aGlsZSB0aGV5IGFyZSBwcm9jZXNzZWQuXG4gICAqIEJhc2VkIG9uIHRoZSBhbW91bnQgb2YgdGltZSBpdCB3b3VsZCByZXF1aXJlIHRvIHByb2Nlc3MgYSBzaW5nbGUgbWVzc2FnZS5cbiAgICogQGRlZmF1bHQgNjAgc2Vjb25kc1xuICAgKi9cbiAgcmVhZG9ubHkgdmlzaWJpbGl0eVRpbWVvdXRTZWM/OiBudW1iZXI7XG59XG5cbmV4cG9ydCBjbGFzcyBUd2VldFF1ZXVlIGV4dGVuZHMgc3FzLlF1ZXVlIHtcbiAgY29uc3RydWN0b3IocGFyZW50OiBDb25zdHJ1Y3QsIGlkOiBzdHJpbmcsIHByb3BzOiBUd2VldFF1ZXVlUHJvcHMpIHtcbiAgICBzdXBlcihwYXJlbnQsIGlkLCB7XG4gICAgICByZXRlbnRpb25QZXJpb2Q6IHByb3BzLnJldGVudGlvblBlcmlvZFNlYyA9PT0gdW5kZWZpbmVkID8gRHVyYXRpb24uc2Vjb25kcyg2MCkgOiBEdXJhdGlvbi5zZWNvbmRzKHByb3BzLnJldGVudGlvblBlcmlvZFNlYyksXG4gICAgICB2aXNpYmlsaXR5VGltZW91dDogcHJvcHMudmlzaWJpbGl0eVRpbWVvdXRTZWMgPT09IHVuZGVmaW5lZCA/IER1cmF0aW9uLnNlY29uZHMoNjApIDogRHVyYXRpb24uc2Vjb25kcyhwcm9wcy52aXNpYmlsaXR5VGltZW91dFNlYyksXG4gICAgfSk7XG5cbiAgICBjb25zdCBrZXlOYW1lID0gJ2lkJztcbiAgICBjb25zdCB0YWJsZSA9IG5ldyBkeW5hbW9kYi5UYWJsZSh0aGlzLCAnQ2hlY2twb2ludFRhYmxlJywge1xuICAgICAgcGFydGl0aW9uS2V5OiB7IG5hbWU6IGtleU5hbWUsIHR5cGU6IGR5bmFtb2RiLkF0dHJpYnV0ZVR5cGUuU1RSSU5HIH0sXG4gICAgfSk7XG5cbiAgICBjb25zdCBmbiA9IG5ldyBsYW1iZGEuTm9kZWpzRnVuY3Rpb24odGhpcywgJ1BvbGxlcicsIHtcbiAgICAgIGVudHJ5OiBwYXRoLmpvaW4oX19kaXJuYW1lLCAncG9sbGVyJywgJ2luZGV4LnRzJyksXG4gICAgICB0aW1lb3V0OiBEdXJhdGlvbi5taW51dGVzKDE1KSxcbiAgICAgIGVudmlyb25tZW50OiB7XG4gICAgICAgIENSRURFTlRJQUxTX1NFQ1JFVDogcHJvcHMuc2VjcmV0QXJuLFxuICAgICAgICBUV0lUVEVSX1FVRVJZOiBwcm9wcy5xdWVyeSxcbiAgICAgICAgUVVFVUVfVVJMOiB0aGlzLnF1ZXVlVXJsLFxuICAgICAgICBDSEVDS1BPSU5UX1RBQkxFX05BTUU6IHRhYmxlLnRhYmxlTmFtZSxcbiAgICAgICAgQ0hFQ0tQT0lOVF9UQUJMRV9LRVlfTkFNRToga2V5TmFtZSxcbiAgICAgIH0sXG4gICAgfSk7XG5cbiAgICBmbi5hZGRUb1JvbGVQb2xpY3kobmV3IGlhbS5Qb2xpY3lTdGF0ZW1lbnQoe1xuICAgICAgcmVzb3VyY2VzOiBbcHJvcHMuc2VjcmV0QXJuXSxcbiAgICAgIGFjdGlvbnM6IFsnc2VjcmV0c21hbmFnZXI6R2V0U2VjcmV0VmFsdWUnXSxcbiAgICB9KSk7XG5cbiAgICBmbi5hZGRUb1JvbGVQb2xpY3kobmV3IGlhbS5Qb2xpY3lTdGF0ZW1lbnQoe1xuICAgICAgcmVzb3VyY2VzOiBbdGhpcy5xdWV1ZUFybl0sXG4gICAgICBhY3Rpb25zOiBbJ3NxczpTZW5kTWVzc2FnZScsICdzcXM6U2VuZE1lc3NhZ2VCYXRjaCddLFxuICAgIH0pKTtcblxuICAgIHRhYmxlLmdyYW50UmVhZFdyaXRlRGF0YShmbik7XG5cbiAgICBjb25zdCBpbnRlcnZhbCA9IHByb3BzLmludGVydmFsTWluID09PSB1bmRlZmluZWQgPyAxIDogcHJvcHMuaW50ZXJ2YWxNaW47XG4gICAgaWYgKGludGVydmFsID4gMCkge1xuICAgICAgY29uc3QgdGltZXIgPSBuZXcgZXZlbnRzLlJ1bGUodGhpcywgJ1BvbGxpbmdUaW1lcicsIHtcbiAgICAgICAgc2NoZWR1bGU6IGV2ZW50cy5TY2hlZHVsZS5yYXRlKER1cmF0aW9uLm1pbnV0ZXMoaW50ZXJ2YWwpKSxcbiAgICAgIH0pO1xuXG4gICAgICB0aW1lci5hZGRUYXJnZXQobmV3IHRhcmdldHMuTGFtYmRhRnVuY3Rpb24oZm4pKTtcbiAgICB9XG4gIH1cbn1cblxuIl19
package/package.json CHANGED
@@ -65,10 +65,10 @@
65
65
  "jest": "^27",
66
66
  "jest-junit": "^16",
67
67
  "jsii": "~5.9",
68
- "jsii-diff": "^1.130.0",
68
+ "jsii-diff": "^1.133.0",
69
69
  "jsii-docgen": "^10.5.0",
70
- "jsii-pacmak": "^1.130.0",
71
- "jsii-rosetta": "~5.9.46",
70
+ "jsii-pacmak": "^1.133.0",
71
+ "jsii-rosetta": "~5.9.49",
72
72
  "projen": "^0.99.8",
73
73
  "ts-node": "^10.9.2",
74
74
  "twitter": "^1.7.1",
@@ -79,7 +79,7 @@
79
79
  "constructs": "^10.0.5"
80
80
  },
81
81
  "dependencies": {
82
- "aws-cdk-lib": "^2.257.0",
82
+ "aws-cdk-lib": "^2.258.0",
83
83
  "constructs": "^10.6.0"
84
84
  },
85
85
  "keywords": [
@@ -93,7 +93,7 @@
93
93
  "publishConfig": {
94
94
  "access": "public"
95
95
  },
96
- "version": "2.0.952",
96
+ "version": "2.0.954",
97
97
  "jest": {
98
98
  "coverageProvider": "v8",
99
99
  "testMatch": [