cloudstructs 0.9.48__tar.gz → 0.11.0__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cloudstructs
3
- Version: 0.9.48
3
+ Version: 0.11.0
4
4
  Summary: High-level constructs for AWS CDK
5
5
  Home-page: https://github.com/jogold/cloudstructs.git
6
6
  Author: Jonathan Goldwasser<jonathan.goldwasser@gmail.com>
@@ -19,7 +19,7 @@ Classifier: License :: OSI Approved
19
19
  Requires-Python: ~=3.9
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
- Requires-Dist: aws-cdk-lib<3.0.0,>=2.133.0
22
+ Requires-Dist: aws-cdk-lib<3.0.0,>=2.232.0
23
23
  Requires-Dist: constructs<11.0.0,>=10.0.5
24
24
  Requires-Dist: jsii<2.0.0,>=1.124.0
25
25
  Requires-Dist: publication>=0.0.3
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "cloudstructs",
8
- "version": "0.9.48",
8
+ "version": "0.11.0",
9
9
  "description": "High-level constructs for AWS CDK",
10
10
  "license": "Apache-2.0",
11
11
  "url": "https://github.com/jogold/cloudstructs.git",
@@ -26,7 +26,7 @@ kwargs = json.loads(
26
26
  ],
27
27
  "package_data": {
28
28
  "cloudstructs._jsii": [
29
- "cloudstructs@0.9.48.jsii.tgz"
29
+ "cloudstructs@0.11.0.jsii.tgz"
30
30
  ],
31
31
  "cloudstructs": [
32
32
  "py.typed"
@@ -34,7 +34,7 @@ kwargs = json.loads(
34
34
  },
35
35
  "python_requires": "~=3.9",
36
36
  "install_requires": [
37
- "aws-cdk-lib>=2.133.0, <3.0.0",
37
+ "aws-cdk-lib>=2.232.0, <3.0.0",
38
38
  "constructs>=10.0.5, <11.0.0",
39
39
  "jsii>=1.124.0, <2.0.0",
40
40
  "publication>=0.0.3",
@@ -75,6 +75,7 @@ import aws_cdk.aws_iam as _aws_cdk_aws_iam_ceddda9d
75
75
  import aws_cdk.aws_lambda as _aws_cdk_aws_lambda_ceddda9d
76
76
  import aws_cdk.aws_route53 as _aws_cdk_aws_route53_ceddda9d
77
77
  import aws_cdk.aws_s3 as _aws_cdk_aws_s3_ceddda9d
78
+ import aws_cdk.aws_scheduler as _aws_cdk_aws_scheduler_ceddda9d
78
79
  import aws_cdk.aws_secretsmanager as _aws_cdk_aws_secretsmanager_ceddda9d
79
80
  import aws_cdk.aws_ses as _aws_cdk_aws_ses_ceddda9d
80
81
  import aws_cdk.aws_sns as _aws_cdk_aws_sns_ceddda9d
@@ -2939,17 +2940,19 @@ class SslServerTest(
2939
2940
  id: builtins.str,
2940
2941
  *,
2941
2942
  host: builtins.str,
2943
+ registration_email: builtins.str,
2942
2944
  alarm_topic: typing.Optional["_aws_cdk_aws_sns_ceddda9d.ITopic"] = None,
2943
2945
  minimum_grade: typing.Optional["SslServerTestGrade"] = None,
2944
- schedule: typing.Optional["_aws_cdk_aws_events_ceddda9d.Schedule"] = None,
2946
+ schedule_expression: typing.Optional["_aws_cdk_aws_scheduler_ceddda9d.ScheduleExpression"] = None,
2945
2947
  ) -> None:
2946
2948
  '''
2947
2949
  :param scope: -
2948
2950
  :param id: -
2949
2951
  :param host: The hostname to test.
2952
+ :param registration_email: The email registered with SSL Labs API.
2950
2953
  :param alarm_topic: The topic to which the results must be sent when the grade is below the minimum grade. Default: - a new topic is created
2951
2954
  :param minimum_grade: Minimum grade for the test. The grade is calculated using the worst grade of all endpoints. Used to send the results to an alarm SNS topic. Default: SslServerTestGrade.A_PLUS
2952
- :param schedule: The schedule for the test. Default: - every day
2955
+ :param schedule_expression: The schedule for the test. Default: - every day
2953
2956
  '''
2954
2957
  if __debug__:
2955
2958
  type_hints = typing.get_type_hints(_typecheckingstub__26b99367596b8cc6ac6dee6ad68205d4938b94b75c3b4b61050a1057ac9535fc)
@@ -2957,9 +2960,10 @@ class SslServerTest(
2957
2960
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
2958
2961
  props = SslServerTestProps(
2959
2962
  host=host,
2963
+ registration_email=registration_email,
2960
2964
  alarm_topic=alarm_topic,
2961
2965
  minimum_grade=minimum_grade,
2962
- schedule=schedule,
2966
+ schedule_expression=schedule_expression,
2963
2967
  )
2964
2968
 
2965
2969
  jsii.create(self.__class__, self, [scope, id, props])
@@ -2990,9 +2994,10 @@ class SslServerTestGrade(enum.Enum):
2990
2994
  jsii_struct_bases=[],
2991
2995
  name_mapping={
2992
2996
  "host": "host",
2997
+ "registration_email": "registrationEmail",
2993
2998
  "alarm_topic": "alarmTopic",
2994
2999
  "minimum_grade": "minimumGrade",
2995
- "schedule": "schedule",
3000
+ "schedule_expression": "scheduleExpression",
2996
3001
  },
2997
3002
  )
2998
3003
  class SslServerTestProps:
@@ -3000,32 +3005,36 @@ class SslServerTestProps:
3000
3005
  self,
3001
3006
  *,
3002
3007
  host: builtins.str,
3008
+ registration_email: builtins.str,
3003
3009
  alarm_topic: typing.Optional["_aws_cdk_aws_sns_ceddda9d.ITopic"] = None,
3004
3010
  minimum_grade: typing.Optional["SslServerTestGrade"] = None,
3005
- schedule: typing.Optional["_aws_cdk_aws_events_ceddda9d.Schedule"] = None,
3011
+ schedule_expression: typing.Optional["_aws_cdk_aws_scheduler_ceddda9d.ScheduleExpression"] = None,
3006
3012
  ) -> None:
3007
3013
  '''Properties for a SslServerTest.
3008
3014
 
3009
3015
  :param host: The hostname to test.
3016
+ :param registration_email: The email registered with SSL Labs API.
3010
3017
  :param alarm_topic: The topic to which the results must be sent when the grade is below the minimum grade. Default: - a new topic is created
3011
3018
  :param minimum_grade: Minimum grade for the test. The grade is calculated using the worst grade of all endpoints. Used to send the results to an alarm SNS topic. Default: SslServerTestGrade.A_PLUS
3012
- :param schedule: The schedule for the test. Default: - every day
3019
+ :param schedule_expression: The schedule for the test. Default: - every day
3013
3020
  '''
3014
3021
  if __debug__:
3015
3022
  type_hints = typing.get_type_hints(_typecheckingstub__3a43c686f7b70a3cbbdd19c19b209179d73aaa7a343df7a85d17003473297e31)
3016
3023
  check_type(argname="argument host", value=host, expected_type=type_hints["host"])
3024
+ check_type(argname="argument registration_email", value=registration_email, expected_type=type_hints["registration_email"])
3017
3025
  check_type(argname="argument alarm_topic", value=alarm_topic, expected_type=type_hints["alarm_topic"])
3018
3026
  check_type(argname="argument minimum_grade", value=minimum_grade, expected_type=type_hints["minimum_grade"])
3019
- check_type(argname="argument schedule", value=schedule, expected_type=type_hints["schedule"])
3027
+ check_type(argname="argument schedule_expression", value=schedule_expression, expected_type=type_hints["schedule_expression"])
3020
3028
  self._values: typing.Dict[builtins.str, typing.Any] = {
3021
3029
  "host": host,
3030
+ "registration_email": registration_email,
3022
3031
  }
3023
3032
  if alarm_topic is not None:
3024
3033
  self._values["alarm_topic"] = alarm_topic
3025
3034
  if minimum_grade is not None:
3026
3035
  self._values["minimum_grade"] = minimum_grade
3027
- if schedule is not None:
3028
- self._values["schedule"] = schedule
3036
+ if schedule_expression is not None:
3037
+ self._values["schedule_expression"] = schedule_expression
3029
3038
 
3030
3039
  @builtins.property
3031
3040
  def host(self) -> builtins.str:
@@ -3034,6 +3043,16 @@ class SslServerTestProps:
3034
3043
  assert result is not None, "Required property 'host' is missing"
3035
3044
  return typing.cast(builtins.str, result)
3036
3045
 
3046
+ @builtins.property
3047
+ def registration_email(self) -> builtins.str:
3048
+ '''The email registered with SSL Labs API.
3049
+
3050
+ :see: https://github.com/ssllabs/ssllabs-scan/blob/master/ssllabs-api-docs-v4.md#register-for-scan-api-initiation-and-result-fetching
3051
+ '''
3052
+ result = self._values.get("registration_email")
3053
+ assert result is not None, "Required property 'registration_email' is missing"
3054
+ return typing.cast(builtins.str, result)
3055
+
3037
3056
  @builtins.property
3038
3057
  def alarm_topic(self) -> typing.Optional["_aws_cdk_aws_sns_ceddda9d.ITopic"]:
3039
3058
  '''The topic to which the results must be sent when the grade is below the minimum grade.
@@ -3055,13 +3074,15 @@ class SslServerTestProps:
3055
3074
  return typing.cast(typing.Optional["SslServerTestGrade"], result)
3056
3075
 
3057
3076
  @builtins.property
3058
- def schedule(self) -> typing.Optional["_aws_cdk_aws_events_ceddda9d.Schedule"]:
3077
+ def schedule_expression(
3078
+ self,
3079
+ ) -> typing.Optional["_aws_cdk_aws_scheduler_ceddda9d.ScheduleExpression"]:
3059
3080
  '''The schedule for the test.
3060
3081
 
3061
3082
  :default: - every day
3062
3083
  '''
3063
- result = self._values.get("schedule")
3064
- return typing.cast(typing.Optional["_aws_cdk_aws_events_ceddda9d.Schedule"], result)
3084
+ result = self._values.get("schedule_expression")
3085
+ return typing.cast(typing.Optional["_aws_cdk_aws_scheduler_ceddda9d.ScheduleExpression"], result)
3065
3086
 
3066
3087
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
3067
3088
  return isinstance(rhs, self.__class__) and rhs._values == self._values
@@ -3406,17 +3427,17 @@ class ToolkitCleaner(
3406
3427
  clean_assets_timeout: typing.Optional["_aws_cdk_ceddda9d.Duration"] = None,
3407
3428
  dry_run: typing.Optional[builtins.bool] = None,
3408
3429
  retain_assets_newer_than: typing.Optional["_aws_cdk_ceddda9d.Duration"] = None,
3409
- schedule: typing.Optional["_aws_cdk_aws_events_ceddda9d.Schedule"] = None,
3410
3430
  schedule_enabled: typing.Optional[builtins.bool] = None,
3431
+ schedule_expression: typing.Optional["_aws_cdk_aws_scheduler_ceddda9d.ScheduleExpression"] = None,
3411
3432
  ) -> None:
3412
3433
  '''
3413
3434
  :param scope: -
3414
3435
  :param id: -
3415
- :param clean_assets_timeout: The timeout for the Lambda functions that clean assets. Default: Duration.minutes(5)
3436
+ :param clean_assets_timeout: The timeout for the clean function. Default: Duration.minutes(30)
3416
3437
  :param dry_run: Only output number of assets and total size that would be deleted but without actually deleting assets.
3417
3438
  :param retain_assets_newer_than: Retain unused assets that were created recently. Default: - all unused assets are removed
3418
- :param schedule: The schedule for the cleaner. Default: - every day
3419
3439
  :param schedule_enabled: Whether to clean on schedule. If you'd like to run the cleanup manually via the console, set to ``false``. Default: true
3440
+ :param schedule_expression: The schedule for the cleaner. Default: - every day
3420
3441
  '''
3421
3442
  if __debug__:
3422
3443
  type_hints = typing.get_type_hints(_typecheckingstub__00fb1018addaa6fbbee6e44dc96b9421d79e37fba0a61f552b58d39e4f614888)
@@ -3426,8 +3447,8 @@ class ToolkitCleaner(
3426
3447
  clean_assets_timeout=clean_assets_timeout,
3427
3448
  dry_run=dry_run,
3428
3449
  retain_assets_newer_than=retain_assets_newer_than,
3429
- schedule=schedule,
3430
3450
  schedule_enabled=schedule_enabled,
3451
+ schedule_expression=schedule_expression,
3431
3452
  )
3432
3453
 
3433
3454
  jsii.create(self.__class__, self, [scope, id, props])
@@ -3440,8 +3461,8 @@ class ToolkitCleaner(
3440
3461
  "clean_assets_timeout": "cleanAssetsTimeout",
3441
3462
  "dry_run": "dryRun",
3442
3463
  "retain_assets_newer_than": "retainAssetsNewerThan",
3443
- "schedule": "schedule",
3444
3464
  "schedule_enabled": "scheduleEnabled",
3465
+ "schedule_expression": "scheduleExpression",
3445
3466
  },
3446
3467
  )
3447
3468
  class ToolkitCleanerProps:
@@ -3451,24 +3472,24 @@ class ToolkitCleanerProps:
3451
3472
  clean_assets_timeout: typing.Optional["_aws_cdk_ceddda9d.Duration"] = None,
3452
3473
  dry_run: typing.Optional[builtins.bool] = None,
3453
3474
  retain_assets_newer_than: typing.Optional["_aws_cdk_ceddda9d.Duration"] = None,
3454
- schedule: typing.Optional["_aws_cdk_aws_events_ceddda9d.Schedule"] = None,
3455
3475
  schedule_enabled: typing.Optional[builtins.bool] = None,
3476
+ schedule_expression: typing.Optional["_aws_cdk_aws_scheduler_ceddda9d.ScheduleExpression"] = None,
3456
3477
  ) -> None:
3457
3478
  '''Properties for a ToolkitCleaner.
3458
3479
 
3459
- :param clean_assets_timeout: The timeout for the Lambda functions that clean assets. Default: Duration.minutes(5)
3480
+ :param clean_assets_timeout: The timeout for the clean function. Default: Duration.minutes(30)
3460
3481
  :param dry_run: Only output number of assets and total size that would be deleted but without actually deleting assets.
3461
3482
  :param retain_assets_newer_than: Retain unused assets that were created recently. Default: - all unused assets are removed
3462
- :param schedule: The schedule for the cleaner. Default: - every day
3463
3483
  :param schedule_enabled: Whether to clean on schedule. If you'd like to run the cleanup manually via the console, set to ``false``. Default: true
3484
+ :param schedule_expression: The schedule for the cleaner. Default: - every day
3464
3485
  '''
3465
3486
  if __debug__:
3466
3487
  type_hints = typing.get_type_hints(_typecheckingstub__72a9c40653a5bdf69499b5627cdaf6eb4c23945c6111027ebe1d6a9b524f87d3)
3467
3488
  check_type(argname="argument clean_assets_timeout", value=clean_assets_timeout, expected_type=type_hints["clean_assets_timeout"])
3468
3489
  check_type(argname="argument dry_run", value=dry_run, expected_type=type_hints["dry_run"])
3469
3490
  check_type(argname="argument retain_assets_newer_than", value=retain_assets_newer_than, expected_type=type_hints["retain_assets_newer_than"])
3470
- check_type(argname="argument schedule", value=schedule, expected_type=type_hints["schedule"])
3471
3491
  check_type(argname="argument schedule_enabled", value=schedule_enabled, expected_type=type_hints["schedule_enabled"])
3492
+ check_type(argname="argument schedule_expression", value=schedule_expression, expected_type=type_hints["schedule_expression"])
3472
3493
  self._values: typing.Dict[builtins.str, typing.Any] = {}
3473
3494
  if clean_assets_timeout is not None:
3474
3495
  self._values["clean_assets_timeout"] = clean_assets_timeout
@@ -3476,16 +3497,16 @@ class ToolkitCleanerProps:
3476
3497
  self._values["dry_run"] = dry_run
3477
3498
  if retain_assets_newer_than is not None:
3478
3499
  self._values["retain_assets_newer_than"] = retain_assets_newer_than
3479
- if schedule is not None:
3480
- self._values["schedule"] = schedule
3481
3500
  if schedule_enabled is not None:
3482
3501
  self._values["schedule_enabled"] = schedule_enabled
3502
+ if schedule_expression is not None:
3503
+ self._values["schedule_expression"] = schedule_expression
3483
3504
 
3484
3505
  @builtins.property
3485
3506
  def clean_assets_timeout(self) -> typing.Optional["_aws_cdk_ceddda9d.Duration"]:
3486
- '''The timeout for the Lambda functions that clean assets.
3507
+ '''The timeout for the clean function.
3487
3508
 
3488
- :default: Duration.minutes(5)
3509
+ :default: Duration.minutes(30)
3489
3510
  '''
3490
3511
  result = self._values.get("clean_assets_timeout")
3491
3512
  return typing.cast(typing.Optional["_aws_cdk_ceddda9d.Duration"], result)
@@ -3505,15 +3526,6 @@ class ToolkitCleanerProps:
3505
3526
  result = self._values.get("retain_assets_newer_than")
3506
3527
  return typing.cast(typing.Optional["_aws_cdk_ceddda9d.Duration"], result)
3507
3528
 
3508
- @builtins.property
3509
- def schedule(self) -> typing.Optional["_aws_cdk_aws_events_ceddda9d.Schedule"]:
3510
- '''The schedule for the cleaner.
3511
-
3512
- :default: - every day
3513
- '''
3514
- result = self._values.get("schedule")
3515
- return typing.cast(typing.Optional["_aws_cdk_aws_events_ceddda9d.Schedule"], result)
3516
-
3517
3529
  @builtins.property
3518
3530
  def schedule_enabled(self) -> typing.Optional[builtins.bool]:
3519
3531
  '''Whether to clean on schedule.
@@ -3526,6 +3538,17 @@ class ToolkitCleanerProps:
3526
3538
  result = self._values.get("schedule_enabled")
3527
3539
  return typing.cast(typing.Optional[builtins.bool], result)
3528
3540
 
3541
+ @builtins.property
3542
+ def schedule_expression(
3543
+ self,
3544
+ ) -> typing.Optional["_aws_cdk_aws_scheduler_ceddda9d.ScheduleExpression"]:
3545
+ '''The schedule for the cleaner.
3546
+
3547
+ :default: - every day
3548
+ '''
3549
+ result = self._values.get("schedule_expression")
3550
+ return typing.cast(typing.Optional["_aws_cdk_aws_scheduler_ceddda9d.ScheduleExpression"], result)
3551
+
3529
3552
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
3530
3553
  return isinstance(rhs, self.__class__) and rhs._values == self._values
3531
3554
 
@@ -4196,9 +4219,10 @@ def _typecheckingstub__26b99367596b8cc6ac6dee6ad68205d4938b94b75c3b4b61050a1057a
4196
4219
  id: builtins.str,
4197
4220
  *,
4198
4221
  host: builtins.str,
4222
+ registration_email: builtins.str,
4199
4223
  alarm_topic: typing.Optional[_aws_cdk_aws_sns_ceddda9d.ITopic] = None,
4200
4224
  minimum_grade: typing.Optional[SslServerTestGrade] = None,
4201
- schedule: typing.Optional[_aws_cdk_aws_events_ceddda9d.Schedule] = None,
4225
+ schedule_expression: typing.Optional[_aws_cdk_aws_scheduler_ceddda9d.ScheduleExpression] = None,
4202
4226
  ) -> None:
4203
4227
  """Type checking stubs"""
4204
4228
  pass
@@ -4206,9 +4230,10 @@ def _typecheckingstub__26b99367596b8cc6ac6dee6ad68205d4938b94b75c3b4b61050a1057a
4206
4230
  def _typecheckingstub__3a43c686f7b70a3cbbdd19c19b209179d73aaa7a343df7a85d17003473297e31(
4207
4231
  *,
4208
4232
  host: builtins.str,
4233
+ registration_email: builtins.str,
4209
4234
  alarm_topic: typing.Optional[_aws_cdk_aws_sns_ceddda9d.ITopic] = None,
4210
4235
  minimum_grade: typing.Optional[SslServerTestGrade] = None,
4211
- schedule: typing.Optional[_aws_cdk_aws_events_ceddda9d.Schedule] = None,
4236
+ schedule_expression: typing.Optional[_aws_cdk_aws_scheduler_ceddda9d.ScheduleExpression] = None,
4212
4237
  ) -> None:
4213
4238
  """Type checking stubs"""
4214
4239
  pass
@@ -4272,8 +4297,8 @@ def _typecheckingstub__00fb1018addaa6fbbee6e44dc96b9421d79e37fba0a61f552b58d39e4
4272
4297
  clean_assets_timeout: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4273
4298
  dry_run: typing.Optional[builtins.bool] = None,
4274
4299
  retain_assets_newer_than: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4275
- schedule: typing.Optional[_aws_cdk_aws_events_ceddda9d.Schedule] = None,
4276
4300
  schedule_enabled: typing.Optional[builtins.bool] = None,
4301
+ schedule_expression: typing.Optional[_aws_cdk_aws_scheduler_ceddda9d.ScheduleExpression] = None,
4277
4302
  ) -> None:
4278
4303
  """Type checking stubs"""
4279
4304
  pass
@@ -4283,8 +4308,8 @@ def _typecheckingstub__72a9c40653a5bdf69499b5627cdaf6eb4c23945c6111027ebe1d6a9b5
4283
4308
  clean_assets_timeout: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4284
4309
  dry_run: typing.Optional[builtins.bool] = None,
4285
4310
  retain_assets_newer_than: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4286
- schedule: typing.Optional[_aws_cdk_aws_events_ceddda9d.Schedule] = None,
4287
4311
  schedule_enabled: typing.Optional[builtins.bool] = None,
4312
+ schedule_expression: typing.Optional[_aws_cdk_aws_scheduler_ceddda9d.ScheduleExpression] = None,
4288
4313
  ) -> None:
4289
4314
  """Type checking stubs"""
4290
4315
  pass
@@ -32,7 +32,7 @@ import aws_cdk._jsii
32
32
  import constructs._jsii
33
33
 
34
34
  __jsii_assembly__ = jsii.JSIIAssembly.load(
35
- "cloudstructs", "0.9.48", __name__[0:-6], "cloudstructs@0.9.48.jsii.tgz"
35
+ "cloudstructs", "0.11.0", __name__[0:-6], "cloudstructs@0.11.0.jsii.tgz"
36
36
  )
37
37
 
38
38
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cloudstructs
3
- Version: 0.9.48
3
+ Version: 0.11.0
4
4
  Summary: High-level constructs for AWS CDK
5
5
  Home-page: https://github.com/jogold/cloudstructs.git
6
6
  Author: Jonathan Goldwasser<jonathan.goldwasser@gmail.com>
@@ -19,7 +19,7 @@ Classifier: License :: OSI Approved
19
19
  Requires-Python: ~=3.9
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
- Requires-Dist: aws-cdk-lib<3.0.0,>=2.133.0
22
+ Requires-Dist: aws-cdk-lib<3.0.0,>=2.232.0
23
23
  Requires-Dist: constructs<11.0.0,>=10.0.5
24
24
  Requires-Dist: jsii<2.0.0,>=1.124.0
25
25
  Requires-Dist: publication>=0.0.3
@@ -11,4 +11,4 @@ src/cloudstructs.egg-info/dependency_links.txt
11
11
  src/cloudstructs.egg-info/requires.txt
12
12
  src/cloudstructs.egg-info/top_level.txt
13
13
  src/cloudstructs/_jsii/__init__.py
14
- src/cloudstructs/_jsii/cloudstructs@0.9.48.jsii.tgz
14
+ src/cloudstructs/_jsii/cloudstructs@0.11.0.jsii.tgz
@@ -1,4 +1,4 @@
1
- aws-cdk-lib<3.0.0,>=2.133.0
1
+ aws-cdk-lib<3.0.0,>=2.232.0
2
2
  constructs<11.0.0,>=10.0.5
3
3
  jsii<2.0.0,>=1.124.0
4
4
  publication>=0.0.3
File without changes
File without changes
File without changes
File without changes