aws-cdk-lib 2.197.0__py3-none-any.whl → 2.198.0__py3-none-any.whl

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.

Potentially problematic release.


This version of aws-cdk-lib might be problematic. Click here for more details.

Files changed (31) hide show
  1. aws_cdk/_jsii/__init__.py +1 -1
  2. aws_cdk/_jsii/{aws-cdk-lib@2.197.0.jsii.tgz → aws-cdk-lib@2.198.0.jsii.tgz} +0 -0
  3. aws_cdk/aws_applicationautoscaling/__init__.py +36 -0
  4. aws_cdk/aws_appsync/__init__.py +31 -21
  5. aws_cdk/aws_autoscaling/__init__.py +2 -1
  6. aws_cdk/aws_codepipeline/__init__.py +4 -2
  7. aws_cdk/aws_datasync/__init__.py +885 -839
  8. aws_cdk/aws_deadline/__init__.py +23 -4
  9. aws_cdk/aws_ec2/__init__.py +210 -4
  10. aws_cdk/aws_ecs/__init__.py +14 -2
  11. aws_cdk/aws_ecs_patterns/__init__.py +15 -9
  12. aws_cdk/aws_elasticloadbalancingv2/__init__.py +14 -8
  13. aws_cdk/aws_gamelift/__init__.py +15 -17
  14. aws_cdk/aws_lex/__init__.py +1245 -172
  15. aws_cdk/aws_mediapackagev2/__init__.py +11 -10
  16. aws_cdk/aws_omics/__init__.py +41 -19
  17. aws_cdk/aws_pcs/__init__.py +126 -0
  18. aws_cdk/aws_rds/__init__.py +42 -15
  19. aws_cdk/aws_rolesanywhere/__init__.py +14 -13
  20. aws_cdk/aws_sagemaker/__init__.py +38 -12
  21. aws_cdk/aws_ses/__init__.py +188 -0
  22. aws_cdk/aws_ssmquicksetup/__init__.py +10 -2
  23. aws_cdk/aws_synthetics/__init__.py +137 -3
  24. aws_cdk/aws_wafv2/__init__.py +4 -4
  25. aws_cdk/aws_workspaces/__init__.py +5 -3
  26. {aws_cdk_lib-2.197.0.dist-info → aws_cdk_lib-2.198.0.dist-info}/METADATA +2 -2
  27. {aws_cdk_lib-2.197.0.dist-info → aws_cdk_lib-2.198.0.dist-info}/RECORD +31 -31
  28. {aws_cdk_lib-2.197.0.dist-info → aws_cdk_lib-2.198.0.dist-info}/LICENSE +0 -0
  29. {aws_cdk_lib-2.197.0.dist-info → aws_cdk_lib-2.198.0.dist-info}/NOTICE +0 -0
  30. {aws_cdk_lib-2.197.0.dist-info → aws_cdk_lib-2.198.0.dist-info}/WHEEL +0 -0
  31. {aws_cdk_lib-2.197.0.dist-info → aws_cdk_lib-2.198.0.dist-info}/top_level.txt +0 -0
@@ -1337,7 +1337,10 @@ class CfnCanary(
1337
1337
  expression="expression",
1338
1338
 
1339
1339
  # the properties below are optional
1340
- duration_in_seconds="durationInSeconds"
1340
+ duration_in_seconds="durationInSeconds",
1341
+ retry_config=synthetics.CfnCanary.RetryConfigProperty(
1342
+ max_retries=123
1343
+ )
1341
1344
  ),
1342
1345
 
1343
1346
  # the properties below are optional
@@ -1348,6 +1351,7 @@ class CfnCanary(
1348
1351
  )
1349
1352
  ),
1350
1353
  delete_lambda_resources_on_canary_deletion=False,
1354
+ dry_run_and_update=False,
1351
1355
  failure_retention_period=123,
1352
1356
  provisioned_resource_cleanup="provisionedResourceCleanup",
1353
1357
  resources_to_replicate_tags=["resourcesToReplicateTags"],
@@ -1400,6 +1404,7 @@ class CfnCanary(
1400
1404
  schedule: typing.Union[_IResolvable_da3f097b, typing.Union["CfnCanary.ScheduleProperty", typing.Dict[builtins.str, typing.Any]]],
1401
1405
  artifact_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCanary.ArtifactConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
1402
1406
  delete_lambda_resources_on_canary_deletion: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
1407
+ dry_run_and_update: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
1403
1408
  failure_retention_period: typing.Optional[jsii.Number] = None,
1404
1409
  provisioned_resource_cleanup: typing.Optional[builtins.str] = None,
1405
1410
  resources_to_replicate_tags: typing.Optional[typing.Sequence[builtins.str]] = None,
@@ -1421,6 +1426,7 @@ class CfnCanary(
1421
1426
  :param schedule: A structure that contains information about how often the canary is to run, and when these runs are to stop.
1422
1427
  :param artifact_config: A structure that contains the configuration for canary artifacts, including the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3.
1423
1428
  :param delete_lambda_resources_on_canary_deletion: (deprecated) Deletes associated lambda resources created by Synthetics if set to True. Default is False
1429
+ :param dry_run_and_update: Setting to control if UpdateCanary will perform a DryRun and validate it is PASSING before performing the Update. Default is FALSE.
1424
1430
  :param failure_retention_period: The number of days to retain data about failed runs of this canary. If you omit this field, the default of 31 days is used. The valid range is 1 to 455 days. This setting affects the range of information returned by `GetCanaryRuns <https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_GetCanaryRuns.html>`_ , as well as the range of information displayed in the Synthetics console.
1425
1431
  :param provisioned_resource_cleanup: Specifies whether to also delete the Lambda functions and layers used by this canary when the canary is deleted. If it is ``AUTOMATIC`` , the Lambda functions and layers will be deleted when the canary is deleted. If the value of this parameter is ``OFF`` , then the value of the ``DeleteLambda`` parameter of the `DeleteCanary <https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DeleteCanary.html>`_ operation determines whether the Lambda functions and layers will be deleted.
1426
1432
  :param resources_to_replicate_tags: To have the tags that you apply to this canary also be applied to the Lambda function that the canary uses, specify this property with the value ``lambda-function`` . If you do this, CloudWatch Synthetics will keep the tags of the canary and the Lambda function synchronized. Any future changes you make to the canary's tags will also be applied to the function.
@@ -1444,6 +1450,7 @@ class CfnCanary(
1444
1450
  schedule=schedule,
1445
1451
  artifact_config=artifact_config,
1446
1452
  delete_lambda_resources_on_canary_deletion=delete_lambda_resources_on_canary_deletion,
1453
+ dry_run_and_update=dry_run_and_update,
1447
1454
  failure_retention_period=failure_retention_period,
1448
1455
  provisioned_resource_cleanup=provisioned_resource_cleanup,
1449
1456
  resources_to_replicate_tags=resources_to_replicate_tags,
@@ -1654,6 +1661,24 @@ class CfnCanary(
1654
1661
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1655
1662
  jsii.set(self, "deleteLambdaResourcesOnCanaryDeletion", value) # pyright: ignore[reportArgumentType]
1656
1663
 
1664
+ @builtins.property
1665
+ @jsii.member(jsii_name="dryRunAndUpdate")
1666
+ def dry_run_and_update(
1667
+ self,
1668
+ ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
1669
+ '''Setting to control if UpdateCanary will perform a DryRun and validate it is PASSING before performing the Update.'''
1670
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "dryRunAndUpdate"))
1671
+
1672
+ @dry_run_and_update.setter
1673
+ def dry_run_and_update(
1674
+ self,
1675
+ value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
1676
+ ) -> None:
1677
+ if __debug__:
1678
+ type_hints = typing.get_type_hints(_typecheckingstub__59860e5fb72da4da1108545c9e0b8f706d34cf83eb363fda05f04cbb14baf1fe)
1679
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1680
+ jsii.set(self, "dryRunAndUpdate", value) # pyright: ignore[reportArgumentType]
1681
+
1657
1682
  @builtins.property
1658
1683
  @jsii.member(jsii_name="failureRetentionPeriod")
1659
1684
  def failure_retention_period(self) -> typing.Optional[jsii.Number]:
@@ -2089,6 +2114,57 @@ class CfnCanary(
2089
2114
  k + "=" + repr(v) for k, v in self._values.items()
2090
2115
  )
2091
2116
 
2117
+ @jsii.data_type(
2118
+ jsii_type="aws-cdk-lib.aws_synthetics.CfnCanary.RetryConfigProperty",
2119
+ jsii_struct_bases=[],
2120
+ name_mapping={"max_retries": "maxRetries"},
2121
+ )
2122
+ class RetryConfigProperty:
2123
+ def __init__(self, *, max_retries: jsii.Number) -> None:
2124
+ '''
2125
+ :param max_retries: maximum times the canary will be retried upon the scheduled run failure.
2126
+
2127
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-retryconfig.html
2128
+ :exampleMetadata: fixture=_generated
2129
+
2130
+ Example::
2131
+
2132
+ # The code below shows an example of how to instantiate this type.
2133
+ # The values are placeholders you should change.
2134
+ from aws_cdk import aws_synthetics as synthetics
2135
+
2136
+ retry_config_property = synthetics.CfnCanary.RetryConfigProperty(
2137
+ max_retries=123
2138
+ )
2139
+ '''
2140
+ if __debug__:
2141
+ type_hints = typing.get_type_hints(_typecheckingstub__e7a2c989ca2c701e49af0e8032c8c49bb52546c68c9e6359df8e7a9f2c4cf9a1)
2142
+ check_type(argname="argument max_retries", value=max_retries, expected_type=type_hints["max_retries"])
2143
+ self._values: typing.Dict[builtins.str, typing.Any] = {
2144
+ "max_retries": max_retries,
2145
+ }
2146
+
2147
+ @builtins.property
2148
+ def max_retries(self) -> jsii.Number:
2149
+ '''maximum times the canary will be retried upon the scheduled run failure.
2150
+
2151
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-retryconfig.html#cfn-synthetics-canary-retryconfig-maxretries
2152
+ '''
2153
+ result = self._values.get("max_retries")
2154
+ assert result is not None, "Required property 'max_retries' is missing"
2155
+ return typing.cast(jsii.Number, result)
2156
+
2157
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2158
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2159
+
2160
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2161
+ return not (rhs == self)
2162
+
2163
+ def __repr__(self) -> str:
2164
+ return "RetryConfigProperty(%s)" % ", ".join(
2165
+ k + "=" + repr(v) for k, v in self._values.items()
2166
+ )
2167
+
2092
2168
  @jsii.data_type(
2093
2169
  jsii_type="aws-cdk-lib.aws_synthetics.CfnCanary.RunConfigProperty",
2094
2170
  jsii_struct_bases=[],
@@ -2300,6 +2376,7 @@ class CfnCanary(
2300
2376
  name_mapping={
2301
2377
  "expression": "expression",
2302
2378
  "duration_in_seconds": "durationInSeconds",
2379
+ "retry_config": "retryConfig",
2303
2380
  },
2304
2381
  )
2305
2382
  class ScheduleProperty:
@@ -2308,11 +2385,13 @@ class CfnCanary(
2308
2385
  *,
2309
2386
  expression: builtins.str,
2310
2387
  duration_in_seconds: typing.Optional[builtins.str] = None,
2388
+ retry_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCanary.RetryConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
2311
2389
  ) -> None:
2312
2390
  '''This structure specifies how often a canary is to make runs and the date and time when it should stop making runs.
2313
2391
 
2314
2392
  :param expression: A ``rate`` expression or a ``cron`` expression that defines how often the canary is to run. For a rate expression, The syntax is ``rate( *number unit* )`` . *unit* can be ``minute`` , ``minutes`` , or ``hour`` . For example, ``rate(1 minute)`` runs the canary once a minute, ``rate(10 minutes)`` runs it once every 10 minutes, and ``rate(1 hour)`` runs it once every hour. You can specify a frequency between ``rate(1 minute)`` and ``rate(1 hour)`` . Specifying ``rate(0 minute)`` or ``rate(0 hour)`` is a special value that causes the canary to run only once when it is started. Use ``cron( *expression* )`` to specify a cron expression. You can't schedule a canary to wait for more than a year before running. For information about the syntax for cron expressions, see `Scheduling canary runs using cron <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_cron.html>`_ .
2315
2393
  :param duration_in_seconds: How long, in seconds, for the canary to continue making regular runs according to the schedule in the ``Expression`` value. If you specify 0, the canary continues making runs until you stop it. If you omit this field, the default of 0 is used.
2394
+ :param retry_config:
2316
2395
 
2317
2396
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html
2318
2397
  :exampleMetadata: fixture=_generated
@@ -2327,18 +2406,24 @@ class CfnCanary(
2327
2406
  expression="expression",
2328
2407
 
2329
2408
  # the properties below are optional
2330
- duration_in_seconds="durationInSeconds"
2409
+ duration_in_seconds="durationInSeconds",
2410
+ retry_config=synthetics.CfnCanary.RetryConfigProperty(
2411
+ max_retries=123
2412
+ )
2331
2413
  )
2332
2414
  '''
2333
2415
  if __debug__:
2334
2416
  type_hints = typing.get_type_hints(_typecheckingstub__e4999288d0e0c5de04c56a3436208778026602dfdca27710aee93f9f4e034c29)
2335
2417
  check_type(argname="argument expression", value=expression, expected_type=type_hints["expression"])
2336
2418
  check_type(argname="argument duration_in_seconds", value=duration_in_seconds, expected_type=type_hints["duration_in_seconds"])
2419
+ check_type(argname="argument retry_config", value=retry_config, expected_type=type_hints["retry_config"])
2337
2420
  self._values: typing.Dict[builtins.str, typing.Any] = {
2338
2421
  "expression": expression,
2339
2422
  }
2340
2423
  if duration_in_seconds is not None:
2341
2424
  self._values["duration_in_seconds"] = duration_in_seconds
2425
+ if retry_config is not None:
2426
+ self._values["retry_config"] = retry_config
2342
2427
 
2343
2428
  @builtins.property
2344
2429
  def expression(self) -> builtins.str:
@@ -2369,6 +2454,16 @@ class CfnCanary(
2369
2454
  result = self._values.get("duration_in_seconds")
2370
2455
  return typing.cast(typing.Optional[builtins.str], result)
2371
2456
 
2457
+ @builtins.property
2458
+ def retry_config(
2459
+ self,
2460
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCanary.RetryConfigProperty"]]:
2461
+ '''
2462
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-retryconfig
2463
+ '''
2464
+ result = self._values.get("retry_config")
2465
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCanary.RetryConfigProperty"]], result)
2466
+
2372
2467
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
2373
2468
  return isinstance(rhs, self.__class__) and rhs._values == self._values
2374
2469
 
@@ -2594,6 +2689,7 @@ class CfnCanary(
2594
2689
  "schedule": "schedule",
2595
2690
  "artifact_config": "artifactConfig",
2596
2691
  "delete_lambda_resources_on_canary_deletion": "deleteLambdaResourcesOnCanaryDeletion",
2692
+ "dry_run_and_update": "dryRunAndUpdate",
2597
2693
  "failure_retention_period": "failureRetentionPeriod",
2598
2694
  "provisioned_resource_cleanup": "provisionedResourceCleanup",
2599
2695
  "resources_to_replicate_tags": "resourcesToReplicateTags",
@@ -2617,6 +2713,7 @@ class CfnCanaryProps:
2617
2713
  schedule: typing.Union[_IResolvable_da3f097b, typing.Union[CfnCanary.ScheduleProperty, typing.Dict[builtins.str, typing.Any]]],
2618
2714
  artifact_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCanary.ArtifactConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
2619
2715
  delete_lambda_resources_on_canary_deletion: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
2716
+ dry_run_and_update: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
2620
2717
  failure_retention_period: typing.Optional[jsii.Number] = None,
2621
2718
  provisioned_resource_cleanup: typing.Optional[builtins.str] = None,
2622
2719
  resources_to_replicate_tags: typing.Optional[typing.Sequence[builtins.str]] = None,
@@ -2637,6 +2734,7 @@ class CfnCanaryProps:
2637
2734
  :param schedule: A structure that contains information about how often the canary is to run, and when these runs are to stop.
2638
2735
  :param artifact_config: A structure that contains the configuration for canary artifacts, including the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3.
2639
2736
  :param delete_lambda_resources_on_canary_deletion: (deprecated) Deletes associated lambda resources created by Synthetics if set to True. Default is False
2737
+ :param dry_run_and_update: Setting to control if UpdateCanary will perform a DryRun and validate it is PASSING before performing the Update. Default is FALSE.
2640
2738
  :param failure_retention_period: The number of days to retain data about failed runs of this canary. If you omit this field, the default of 31 days is used. The valid range is 1 to 455 days. This setting affects the range of information returned by `GetCanaryRuns <https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_GetCanaryRuns.html>`_ , as well as the range of information displayed in the Synthetics console.
2641
2739
  :param provisioned_resource_cleanup: Specifies whether to also delete the Lambda functions and layers used by this canary when the canary is deleted. If it is ``AUTOMATIC`` , the Lambda functions and layers will be deleted when the canary is deleted. If the value of this parameter is ``OFF`` , then the value of the ``DeleteLambda`` parameter of the `DeleteCanary <https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DeleteCanary.html>`_ operation determines whether the Lambda functions and layers will be deleted.
2642
2740
  :param resources_to_replicate_tags: To have the tags that you apply to this canary also be applied to the Lambda function that the canary uses, specify this property with the value ``lambda-function`` . If you do this, CloudWatch Synthetics will keep the tags of the canary and the Lambda function synchronized. Any future changes you make to the canary's tags will also be applied to the function.
@@ -2675,7 +2773,10 @@ class CfnCanaryProps:
2675
2773
  expression="expression",
2676
2774
 
2677
2775
  # the properties below are optional
2678
- duration_in_seconds="durationInSeconds"
2776
+ duration_in_seconds="durationInSeconds",
2777
+ retry_config=synthetics.CfnCanary.RetryConfigProperty(
2778
+ max_retries=123
2779
+ )
2679
2780
  ),
2680
2781
 
2681
2782
  # the properties below are optional
@@ -2686,6 +2787,7 @@ class CfnCanaryProps:
2686
2787
  )
2687
2788
  ),
2688
2789
  delete_lambda_resources_on_canary_deletion=False,
2790
+ dry_run_and_update=False,
2689
2791
  failure_retention_period=123,
2690
2792
  provisioned_resource_cleanup="provisionedResourceCleanup",
2691
2793
  resources_to_replicate_tags=["resourcesToReplicateTags"],
@@ -2734,6 +2836,7 @@ class CfnCanaryProps:
2734
2836
  check_type(argname="argument schedule", value=schedule, expected_type=type_hints["schedule"])
2735
2837
  check_type(argname="argument artifact_config", value=artifact_config, expected_type=type_hints["artifact_config"])
2736
2838
  check_type(argname="argument delete_lambda_resources_on_canary_deletion", value=delete_lambda_resources_on_canary_deletion, expected_type=type_hints["delete_lambda_resources_on_canary_deletion"])
2839
+ check_type(argname="argument dry_run_and_update", value=dry_run_and_update, expected_type=type_hints["dry_run_and_update"])
2737
2840
  check_type(argname="argument failure_retention_period", value=failure_retention_period, expected_type=type_hints["failure_retention_period"])
2738
2841
  check_type(argname="argument provisioned_resource_cleanup", value=provisioned_resource_cleanup, expected_type=type_hints["provisioned_resource_cleanup"])
2739
2842
  check_type(argname="argument resources_to_replicate_tags", value=resources_to_replicate_tags, expected_type=type_hints["resources_to_replicate_tags"])
@@ -2755,6 +2858,8 @@ class CfnCanaryProps:
2755
2858
  self._values["artifact_config"] = artifact_config
2756
2859
  if delete_lambda_resources_on_canary_deletion is not None:
2757
2860
  self._values["delete_lambda_resources_on_canary_deletion"] = delete_lambda_resources_on_canary_deletion
2861
+ if dry_run_and_update is not None:
2862
+ self._values["dry_run_and_update"] = dry_run_and_update
2758
2863
  if failure_retention_period is not None:
2759
2864
  self._values["failure_retention_period"] = failure_retention_period
2760
2865
  if provisioned_resource_cleanup is not None:
@@ -2883,6 +2988,19 @@ class CfnCanaryProps:
2883
2988
  result = self._values.get("delete_lambda_resources_on_canary_deletion")
2884
2989
  return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
2885
2990
 
2991
+ @builtins.property
2992
+ def dry_run_and_update(
2993
+ self,
2994
+ ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
2995
+ '''Setting to control if UpdateCanary will perform a DryRun and validate it is PASSING before performing the Update.
2996
+
2997
+ Default is FALSE.
2998
+
2999
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-dryrunandupdate
3000
+ '''
3001
+ result = self._values.get("dry_run_and_update")
3002
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
3003
+
2886
3004
  @builtins.property
2887
3005
  def failure_retention_period(self) -> typing.Optional[jsii.Number]:
2888
3006
  '''The number of days to retain data about failed runs of this canary.
@@ -4677,6 +4795,7 @@ def _typecheckingstub__b8fcb3f48eca9399b4d1d31a5ef709e22f9fa52ad1e174b75d8313ef2
4677
4795
  schedule: typing.Union[_IResolvable_da3f097b, typing.Union[CfnCanary.ScheduleProperty, typing.Dict[builtins.str, typing.Any]]],
4678
4796
  artifact_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCanary.ArtifactConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
4679
4797
  delete_lambda_resources_on_canary_deletion: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
4798
+ dry_run_and_update: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
4680
4799
  failure_retention_period: typing.Optional[jsii.Number] = None,
4681
4800
  provisioned_resource_cleanup: typing.Optional[builtins.str] = None,
4682
4801
  resources_to_replicate_tags: typing.Optional[typing.Sequence[builtins.str]] = None,
@@ -4750,6 +4869,12 @@ def _typecheckingstub__442577c2c36e4274dca25b3d866e1aeec3f4ffc18732e01050131a31f
4750
4869
  """Type checking stubs"""
4751
4870
  pass
4752
4871
 
4872
+ def _typecheckingstub__59860e5fb72da4da1108545c9e0b8f706d34cf83eb363fda05f04cbb14baf1fe(
4873
+ value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
4874
+ ) -> None:
4875
+ """Type checking stubs"""
4876
+ pass
4877
+
4753
4878
  def _typecheckingstub__02a7e43f45419c4cb8e909f309f8848d4ced91d17b01d14e5ea0b8cec28aab1b(
4754
4879
  value: typing.Optional[jsii.Number],
4755
4880
  ) -> None:
@@ -4831,6 +4956,13 @@ def _typecheckingstub__3d403372a613babc1ab10717d050ec9a7f4055961f3545f2d0600d89c
4831
4956
  """Type checking stubs"""
4832
4957
  pass
4833
4958
 
4959
+ def _typecheckingstub__e7a2c989ca2c701e49af0e8032c8c49bb52546c68c9e6359df8e7a9f2c4cf9a1(
4960
+ *,
4961
+ max_retries: jsii.Number,
4962
+ ) -> None:
4963
+ """Type checking stubs"""
4964
+ pass
4965
+
4834
4966
  def _typecheckingstub__fa148862e82948accbbe951e7afcee721aa7014754c81106d2648fe1c5cf28e2(
4835
4967
  *,
4836
4968
  active_tracing: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
@@ -4853,6 +4985,7 @@ def _typecheckingstub__e4999288d0e0c5de04c56a3436208778026602dfdca27710aee93f9f4
4853
4985
  *,
4854
4986
  expression: builtins.str,
4855
4987
  duration_in_seconds: typing.Optional[builtins.str] = None,
4988
+ retry_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCanary.RetryConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
4856
4989
  ) -> None:
4857
4990
  """Type checking stubs"""
4858
4991
  pass
@@ -4885,6 +5018,7 @@ def _typecheckingstub__d869d56ce0d1d2e2add2f80bf39b28abbec2752c719e03194ee540bf1
4885
5018
  schedule: typing.Union[_IResolvable_da3f097b, typing.Union[CfnCanary.ScheduleProperty, typing.Dict[builtins.str, typing.Any]]],
4886
5019
  artifact_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCanary.ArtifactConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
4887
5020
  delete_lambda_resources_on_canary_deletion: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
5021
+ dry_run_and_update: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
4888
5022
  failure_retention_period: typing.Optional[jsii.Number] = None,
4889
5023
  provisioned_resource_cleanup: typing.Optional[builtins.str] = None,
4890
5024
  resources_to_replicate_tags: typing.Optional[typing.Sequence[builtins.str]] = None,
@@ -4674,7 +4674,7 @@ class CfnRuleGroup(
4674
4674
 
4675
4675
  :param match_pattern: The filter to use to identify the subset of headers to inspect in a web request. You must specify exactly one setting: either ``All`` , ``IncludedHeaders`` , or ``ExcludedHeaders`` . Example JSON: ``"MatchPattern": { "ExcludedHeaders": [ "KeyToExclude1", "KeyToExclude2" ] }``
4676
4676
  :param match_scope: The parts of the headers to match with the rule inspection criteria. If you specify ``ALL`` , AWS WAF inspects both keys and values. ``All`` does not require a match to be found in the keys and a match to be found in the values. It requires a match to be found in the keys or the values or both. To require a match in the keys and in the values, use a logical ``AND`` statement to combine two match rules, one that inspects the keys and another that inspects the values.
4677
- :param oversize_handling: What AWS WAF should do if the headers of the request are more numerous or larger than AWS WAF can inspect. AWS WAF does not support inspecting the entire contents of request headers when they exceed 8 KB (8192 bytes) or 200 total headers. The underlying host service forwards a maximum of 200 headers and at most 8 KB of header contents to AWS WAF . The options for oversize handling are the following: - ``CONTINUE`` - Inspect the available headers normally, according to the rule inspection criteria. - ``MATCH`` - Treat the web request as matching the rule statement. AWS WAF applies the rule action to the request. - ``NO_MATCH`` - Treat the web request as not matching the rule statement.
4677
+ :param oversize_handling: What AWS WAF should do if the headers determined by your match scope are more numerous or larger than AWS WAF can inspect. AWS WAF does not support inspecting the entire contents of request headers when they exceed 8 KB (8192 bytes) or 200 total headers. The underlying host service forwards a maximum of 200 headers and at most 8 KB of header contents to AWS WAF . The options for oversize handling are the following: - ``CONTINUE`` - Inspect the available headers normally, according to the rule inspection criteria. - ``MATCH`` - Treat the web request as matching the rule statement. AWS WAF applies the rule action to the request. - ``NO_MATCH`` - Treat the web request as not matching the rule statement.
4678
4678
 
4679
4679
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-headers.html
4680
4680
  :exampleMetadata: fixture=_generated
@@ -4740,7 +4740,7 @@ class CfnRuleGroup(
4740
4740
 
4741
4741
  @builtins.property
4742
4742
  def oversize_handling(self) -> builtins.str:
4743
- '''What AWS WAF should do if the headers of the request are more numerous or larger than AWS WAF can inspect.
4743
+ '''What AWS WAF should do if the headers determined by your match scope are more numerous or larger than AWS WAF can inspect.
4744
4744
 
4745
4745
  AWS WAF does not support inspecting the entire contents of request headers when they exceed 8 KB (8192 bytes) or 200 total headers. The underlying host service forwards a maximum of 200 headers and at most 8 KB of header contents to AWS WAF .
4746
4746
 
@@ -14579,7 +14579,7 @@ class CfnWebACL(
14579
14579
 
14580
14580
  :param match_pattern: The filter to use to identify the subset of headers to inspect in a web request. You must specify exactly one setting: either ``All`` , ``IncludedHeaders`` , or ``ExcludedHeaders`` . Example JSON: ``"MatchPattern": { "ExcludedHeaders": [ "KeyToExclude1", "KeyToExclude2" ] }``
14581
14581
  :param match_scope: The parts of the headers to match with the rule inspection criteria. If you specify ``ALL`` , AWS WAF inspects both keys and values. ``All`` does not require a match to be found in the keys and a match to be found in the values. It requires a match to be found in the keys or the values or both. To require a match in the keys and in the values, use a logical ``AND`` statement to combine two match rules, one that inspects the keys and another that inspects the values.
14582
- :param oversize_handling: What AWS WAF should do if the headers of the request are more numerous or larger than AWS WAF can inspect. AWS WAF does not support inspecting the entire contents of request headers when they exceed 8 KB (8192 bytes) or 200 total headers. The underlying host service forwards a maximum of 200 headers and at most 8 KB of header contents to AWS WAF . The options for oversize handling are the following: - ``CONTINUE`` - Inspect the available headers normally, according to the rule inspection criteria. - ``MATCH`` - Treat the web request as matching the rule statement. AWS WAF applies the rule action to the request. - ``NO_MATCH`` - Treat the web request as not matching the rule statement.
14582
+ :param oversize_handling: What AWS WAF should do if the headers determined by your match scope are more numerous or larger than AWS WAF can inspect. AWS WAF does not support inspecting the entire contents of request headers when they exceed 8 KB (8192 bytes) or 200 total headers. The underlying host service forwards a maximum of 200 headers and at most 8 KB of header contents to AWS WAF . The options for oversize handling are the following: - ``CONTINUE`` - Inspect the available headers normally, according to the rule inspection criteria. - ``MATCH`` - Treat the web request as matching the rule statement. AWS WAF applies the rule action to the request. - ``NO_MATCH`` - Treat the web request as not matching the rule statement.
14583
14583
 
14584
14584
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-headers.html
14585
14585
  :exampleMetadata: fixture=_generated
@@ -14645,7 +14645,7 @@ class CfnWebACL(
14645
14645
 
14646
14646
  @builtins.property
14647
14647
  def oversize_handling(self) -> builtins.str:
14648
- '''What AWS WAF should do if the headers of the request are more numerous or larger than AWS WAF can inspect.
14648
+ '''What AWS WAF should do if the headers determined by your match scope are more numerous or larger than AWS WAF can inspect.
14649
14649
 
14650
14650
  AWS WAF does not support inspecting the entire contents of request headers when they exceed 8 KB (8192 bytes) or 200 total headers. The underlying host service forwards a maximum of 200 headers and at most 8 KB of header contents to AWS WAF .
14651
14651
 
@@ -1058,7 +1058,7 @@ class CfnWorkspacesPool(
1058
1058
  :param pool_name: The name of the pool.
1059
1059
  :param application_settings: The persistent application settings for users of the pool.
1060
1060
  :param description: The description of the pool.
1061
- :param running_mode:
1061
+ :param running_mode: The running mode of the pool.
1062
1062
  :param tags:
1063
1063
  :param timeout_settings: The amount of time that a pool session remains active after users disconnect. If they try to reconnect to the pool session after a disconnection or network interruption within this time interval, they are connected to their previous session. Otherwise, they are connected to a new session with a new pool instance.
1064
1064
  '''
@@ -1239,6 +1239,7 @@ class CfnWorkspacesPool(
1239
1239
  @builtins.property
1240
1240
  @jsii.member(jsii_name="runningMode")
1241
1241
  def running_mode(self) -> typing.Optional[builtins.str]:
1242
+ '''The running mode of the pool.'''
1242
1243
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "runningMode"))
1243
1244
 
1244
1245
  @running_mode.setter
@@ -1539,7 +1540,7 @@ class CfnWorkspacesPoolProps:
1539
1540
  :param pool_name: The name of the pool.
1540
1541
  :param application_settings: The persistent application settings for users of the pool.
1541
1542
  :param description: The description of the pool.
1542
- :param running_mode:
1543
+ :param running_mode: The running mode of the pool.
1543
1544
  :param tags:
1544
1545
  :param timeout_settings: The amount of time that a pool session remains active after users disconnect. If they try to reconnect to the pool session after a disconnection or network interruption within this time interval, they are connected to their previous session. Otherwise, they are connected to a new session with a new pool instance.
1545
1546
 
@@ -1672,7 +1673,8 @@ class CfnWorkspacesPoolProps:
1672
1673
 
1673
1674
  @builtins.property
1674
1675
  def running_mode(self) -> typing.Optional[builtins.str]:
1675
- '''
1676
+ '''The running mode of the pool.
1677
+
1676
1678
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspacespool.html#cfn-workspaces-workspacespool-runningmode
1677
1679
  '''
1678
1680
  result = self._values.get("running_mode")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-cdk-lib
3
- Version: 2.197.0
3
+ Version: 2.198.0
4
4
  Summary: Version 2 of the AWS Cloud Development Kit library
5
5
  Home-page: https://github.com/aws/aws-cdk
6
6
  Author: Amazon Web Services
@@ -20,7 +20,7 @@ Requires-Python: ~=3.9
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
22
  License-File: NOTICE
23
- Requires-Dist: aws-cdk.asset-awscli-v1==2.2.236
23
+ Requires-Dist: aws-cdk.asset-awscli-v1==2.2.237
24
24
  Requires-Dist: aws-cdk.asset-node-proxy-agent-v6<3.0.0,>=2.1.0
25
25
  Requires-Dist: aws-cdk.cloud-assembly-schema<42.0.0,>=41.2.0
26
26
  Requires-Dist: constructs<11.0.0,>=10.0.0
@@ -1,7 +1,7 @@
1
1
  aws_cdk/__init__.py,sha256=tlXTpZk7LiC1UiRy31vONKS37VwiPcbBT2I4fLpEL4U,2027606
2
2
  aws_cdk/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
- aws_cdk/_jsii/__init__.py,sha256=mI46Iag7z_6qjkzylEYU7eTj1iPioPVQp67WA3gjAlw,1543
4
- aws_cdk/_jsii/aws-cdk-lib@2.197.0.jsii.tgz,sha256=l5urxiMJ--GLzZj9pbo_If85-9C3UpIMZIqM-tekTV0,25222376
3
+ aws_cdk/_jsii/__init__.py,sha256=UVuux-VHd1mN5BbmB2bsSQfE9Kho6zgxADne8mofzuY,1543
4
+ aws_cdk/_jsii/aws-cdk-lib@2.198.0.jsii.tgz,sha256=yvK1Z2--0ANt57QZsiVsJYAtEfKYKluEaoKIFLr5n_c,25254980
5
5
  aws_cdk/alexa_ask/__init__.py,sha256=yF4ftch7XArzAniw_xoUmGi3wLGeBqIUlOjBTHSxDb4,36370
6
6
  aws_cdk/assertions/__init__.py,sha256=Fe7BZZpx5cUrxKtNdGbU4eXue79txDh_GqjfLV5wgCM,94355
7
7
  aws_cdk/aws_accessanalyzer/__init__.py,sha256=XiNBttjwK1s2CYyccwKCXH5Nzb74L1i6rVnZ9Zwh49I,57464
@@ -16,19 +16,19 @@ aws_cdk/aws_apigatewayv2_integrations/__init__.py,sha256=b49Ownun7jTBIQIjVCUCLKc
16
16
  aws_cdk/aws_appconfig/__init__.py,sha256=W143xpsdlbm1U1jv1k8M8elBBHP8fWmY3HrsUJW6HII,749953
17
17
  aws_cdk/aws_appflow/__init__.py,sha256=irV1oQfUhKmhb5E2Vu8YZmyz4EFJ5ZIWafU5LsludjE,787082
18
18
  aws_cdk/aws_appintegrations/__init__.py,sha256=un2UJMbuTnmKPt4nnFlngTf7d-kr6XWFHnNq_RAvZK4,87864
19
- aws_cdk/aws_applicationautoscaling/__init__.py,sha256=Ndwod8tbZhkxdG36QWozJ5fxRtmY5qMM0IPVJ24nJjo,513574
19
+ aws_cdk/aws_applicationautoscaling/__init__.py,sha256=HUOql3DJRHGde2MwpC0Z7kBgogFT-acH1pPA0BEuHN4,515050
20
20
  aws_cdk/aws_applicationinsights/__init__.py,sha256=dFFqVnowlQumb7yZXHdoQTZjZvHMQUrb2BMhuuJdAHM,210812
21
21
  aws_cdk/aws_applicationsignals/__init__.py,sha256=87-_s4G3s5RNHI2djKmAhS8kqiitMb7H-6qG4nmCXz0,202310
22
22
  aws_cdk/aws_appmesh/__init__.py,sha256=yuu3oAzqHtbr1qFc6gNpnmFygibSMMkak4G-yjMjkyE,1609252
23
23
  aws_cdk/aws_apprunner/__init__.py,sha256=1SZg3NdECkG99iWRNUkqCi1Tz7IIzGMYQVkybr1jECg,241154
24
24
  aws_cdk/aws_appstream/__init__.py,sha256=vgdLPfwWL81Qsy1VgPcP7BuZg9swpw_3yE417BHp9Bc,452009
25
- aws_cdk/aws_appsync/__init__.py,sha256=WoSypxQ3eVX-zKcP_1XD5YSZNrQTCExPU2dhX-utv-Y,1386298
25
+ aws_cdk/aws_appsync/__init__.py,sha256=0d7S-i2a-DU-C4i6yHpsDcn5BqjxrOKEfK3xTqvVhaE,1387406
26
26
  aws_cdk/aws_apptest/__init__.py,sha256=o7PvWT6mdxtk85HXG2XYW5sxuT3NPNS5PbyGOshFWiw,148303
27
27
  aws_cdk/aws_aps/__init__.py,sha256=7gjLUVWeGBZy5lGD5k7ZUmSHVoCofYJYIkQkktrQGE4,112624
28
28
  aws_cdk/aws_arczonalshift/__init__.py,sha256=hhP5-1oO2WarXvLItnfNIJGto23ilHARKUu7nACh_UM,46778
29
29
  aws_cdk/aws_athena/__init__.py,sha256=AmY2RqmqLxpZil2YIyJAXCZCZu7jLLWgwBrIcJVDr8g,213409
30
30
  aws_cdk/aws_auditmanager/__init__.py,sha256=girW3zvSKS6-PF8Ul3OX3KgiAXAY3nKG9I38LBDA_kU,74464
31
- aws_cdk/aws_autoscaling/__init__.py,sha256=iFCrAAEqfKwScaXBOldouNXTIefNkRDmKC3Q7bnkK-E,1412833
31
+ aws_cdk/aws_autoscaling/__init__.py,sha256=x6fj_rPEcj1DXr6oMpnhhQnL0QQj_zocbyIeqomRjOo,1412891
32
32
  aws_cdk/aws_autoscaling_common/__init__.py,sha256=kVLM6Pg4nnXlCMBchyRmam2CZ9nsStnkk0rXFUV5xCU,16867
33
33
  aws_cdk/aws_autoscaling_hooktargets/__init__.py,sha256=QPzKlft8xvfOdhH60R0p9Yua32YHCagRkeNxVW8L1Ls,11720
34
34
  aws_cdk/aws_autoscalingplans/__init__.py,sha256=7JRe3KgF5TciICPUqE1OuAguOPAelX5JmiuASXf-dEs,121127
@@ -61,7 +61,7 @@ aws_cdk/aws_codeconnections/__init__.py,sha256=Q57XJwQbJX3HfeJYIcVYjoJw1X5NM4LwS
61
61
  aws_cdk/aws_codedeploy/__init__.py,sha256=sER94TYtW3Ew4Dn-DGa0uLVSd7zExndcABwUcd8ffqg,609263
62
62
  aws_cdk/aws_codeguruprofiler/__init__.py,sha256=1uV9NhDjobL4tsxIE1N7dRqX-kaYRb-BdXYb6WM87OU,48572
63
63
  aws_cdk/aws_codegurureviewer/__init__.py,sha256=9497p0WcylnIXlvJ90LQbpqVllRhIEZTaiIPk1oQLuM,27281
64
- aws_cdk/aws_codepipeline/__init__.py,sha256=I0jFjNNLEme4OI6yiSNR0TN6molkc05D6QA6q1AifSA,673646
64
+ aws_cdk/aws_codepipeline/__init__.py,sha256=8D0R_Ul6ljKTi6qkJKtrI1FKNi91KWgyi5I9teLpdRo,674037
65
65
  aws_cdk/aws_codepipeline_actions/__init__.py,sha256=W7nIbe1bHfNF87eF4jkMV5XCZjUDsdCFMqMnq5WPZ1g,762063
66
66
  aws_cdk/aws_codestar/__init__.py,sha256=SJvcSFPGBPwNoxR7MTswiqgSU8HaQ0a0W0EB-zjGvvU,38576
67
67
  aws_cdk/aws_codestarconnections/__init__.py,sha256=oGFXDpdwddFIPcXlfZvnonv8M0ALTMpkQXkdaxXfM4I,62714
@@ -78,10 +78,10 @@ aws_cdk/aws_cur/__init__.py,sha256=BPw-mdiO8wH2fyUwq2svzKyiI13F-AIv-jSgqco8OS8,3
78
78
  aws_cdk/aws_customerprofiles/__init__.py,sha256=knoCVSBbZZiDjnU6A9hofazmbyd2YVbkMDCCKyTK3Yw,596427
79
79
  aws_cdk/aws_databrew/__init__.py,sha256=U8tBGuMZutowBH2JhAP6nXxmuFY9nzqrPpY4z4LzpR8,535977
80
80
  aws_cdk/aws_datapipeline/__init__.py,sha256=liVPxcKxLvGlJbzUXX2HlbkD7tT0qsY2ldQ80zXSsLQ,60560
81
- aws_cdk/aws_datasync/__init__.py,sha256=BXZGWjw0rwmP8aZBGRHh6qopjQWB3-YgR5LHbKSRpLo,599223
81
+ aws_cdk/aws_datasync/__init__.py,sha256=midSXvqjjrWEIvHFqXaW3-Ab1PNXvqoSuuIAyOK-e5w,611394
82
82
  aws_cdk/aws_datazone/__init__.py,sha256=LCYe3sYcGlHJD2lYh_QagXxnRaO9cCsOh0E9iI8qgvw,645765
83
83
  aws_cdk/aws_dax/__init__.py,sha256=I1yrJ8vZ4TR6U7JC6FFDmCtlDTW63xabfSsdQkMQ4q0,76119
84
- aws_cdk/aws_deadline/__init__.py,sha256=ds8PIBMG-f0sHox6O350RlKZu70Gd2FjLz_p_ib-v3Y,335365
84
+ aws_cdk/aws_deadline/__init__.py,sha256=wEwga8Hye85RzW-wbZG2EBOJIwlwERnmUyYlSSoOvyM,336618
85
85
  aws_cdk/aws_detective/__init__.py,sha256=mwqOWK-R25GR53U1zEuCBtfIyNYPtLyC8m0CX2-C2CQ,41481
86
86
  aws_cdk/aws_devicefarm/__init__.py,sha256=Z21GYys0UdEgNaGKrgqifJ7AhHjl1n4I6sKPo0PLDLM,153518
87
87
  aws_cdk/aws_devopsguru/__init__.py,sha256=lwWFQk86um82RMa2nYWY031kpUOG856qQbAVUbnU6sA,65882
@@ -92,17 +92,17 @@ aws_cdk/aws_docdb/__init__.py,sha256=3cY-EEqb2ZHOViQzRVnnZdHMvYn1WEhhCBS9rfJkj4Y
92
92
  aws_cdk/aws_docdbelastic/__init__.py,sha256=8ULf53CjSElODf5ZegB4vP1fvBXVjZjnQOA-D976_nE,46746
93
93
  aws_cdk/aws_dsql/__init__.py,sha256=avlEbnnswA_50I8_veG8IFCxci4PndEORx1MwKsRe4s,18018
94
94
  aws_cdk/aws_dynamodb/__init__.py,sha256=lI2ylX7zoY63QgMyHv9uHWGsHCf8bu68xyHnEPjX75I,1022709
95
- aws_cdk/aws_ec2/__init__.py,sha256=1WXxMlRlUnwF8s-kidPIijwbXnWXyQR1jOALO-o0_cY,6144543
95
+ aws_cdk/aws_ec2/__init__.py,sha256=aOtpk-dXQNybFvfenQx6kRylfHyaa0GpwAxq_Ui7pkc,6156225
96
96
  aws_cdk/aws_ecr/__init__.py,sha256=Ei2771rXPoSxa-zgt37w7yGwQcUhT0dcDFj_l0p6ySI,332021
97
97
  aws_cdk/aws_ecr_assets/__init__.py,sha256=h-ry7VGmOgTsHSW9-BfgXOmDCk4QES88onu750Nekrg,94631
98
- aws_cdk/aws_ecs/__init__.py,sha256=U3Mk_OdmRBn6rsEEEHcHq5SyCHKPpOPfd5QszmWH6PE,2755442
99
- aws_cdk/aws_ecs_patterns/__init__.py,sha256=VSBZP_OeZQ71wEEffkN6VClmehfYAavNfNzjm9AnKpo,1043219
98
+ aws_cdk/aws_ecs/__init__.py,sha256=4RYtPbkVVqi7yDElqfZcwtpo7WRhZtubCpT-6WGik7Q,2757224
99
+ aws_cdk/aws_ecs_patterns/__init__.py,sha256=y9QLxC_KlFoi_NwecWLl5ExBHj50F5buF4MIS_amAXU,1043399
100
100
  aws_cdk/aws_efs/__init__.py,sha256=sO2grVxybxopyGirBS__Cr0mmF0Em4QxXQWQTjjuwcE,284232
101
101
  aws_cdk/aws_eks/__init__.py,sha256=A9j7_ZMoO6XYS7uV4Wtzu8gMGrUfLTTx_SNmn6mBurs,1256234
102
102
  aws_cdk/aws_elasticache/__init__.py,sha256=WVL9JfHmwZOoulEIzV1AtOIzNBaNto_05ezWyG0Lqfo,525805
103
103
  aws_cdk/aws_elasticbeanstalk/__init__.py,sha256=zkQcloEtO1N4Z0oj24wRxhwAEZQnYXhIJFNclDh4SW8,165453
104
104
  aws_cdk/aws_elasticloadbalancing/__init__.py,sha256=G9dr1hj1fn0Sp_92px-CsUzd3m7vjeVkeBgFR0pXpiQ,163326
105
- aws_cdk/aws_elasticloadbalancingv2/__init__.py,sha256=V8KkZ8eXn3oQp6JjBaRs9qSsrs7suFo0jl4wZeOEQ0s,1666940
105
+ aws_cdk/aws_elasticloadbalancingv2/__init__.py,sha256=gr8OJ0tXcW0LX15Z5oWBDoPP1qIgcGi67HHD1uJL8yE,1667776
106
106
  aws_cdk/aws_elasticloadbalancingv2_actions/__init__.py,sha256=f1Z8jISyaPwyJRbZMQ19VyQ14UhdMqktNyyIC7iBIvM,23453
107
107
  aws_cdk/aws_elasticloadbalancingv2_targets/__init__.py,sha256=0aglECiHfjUuHPhZExXN5DxiKU1CxQw5JyKuulGv0nY,24463
108
108
  aws_cdk/aws_elasticsearch/__init__.py,sha256=2FPMtwf9Sw6Lqvq9kS6mL6xX0hbdyrxOK8C_EwXqwms,484901
@@ -120,7 +120,7 @@ aws_cdk/aws_fms/__init__.py,sha256=UN3VPl3JJw9WgBbEP796SzqNr5tddaCWvPhk7S9L4mI,2
120
120
  aws_cdk/aws_forecast/__init__.py,sha256=XRpM-F9UQWYZnZ1mhAJXz3eggrOlZe4ojlVX-pSvj-4,62677
121
121
  aws_cdk/aws_frauddetector/__init__.py,sha256=g5M3QBrjZa_z3_3MK8l4oymI2xJwWp-t9Uoe_e16-rU,262259
122
122
  aws_cdk/aws_fsx/__init__.py,sha256=D5zNbSZk9d0sXMUooNn8UGxgqq7pAhOncJUQRKQFaRs,582131
123
- aws_cdk/aws_gamelift/__init__.py,sha256=4HToQ3iaWBcjv2cjug6BM1mTEc1Xdr2_Z6ZBbbWuOEM,750569
123
+ aws_cdk/aws_gamelift/__init__.py,sha256=i9ezplM_wKfcvz70EZFa9nQwTAYrhtfUZJ5z55w7TQc,751203
124
124
  aws_cdk/aws_gameliftstreams/__init__.py,sha256=BPzI0JPFH0Mn58d1r8nvCSyFZccyZs224oGl3XTQy1g,78399
125
125
  aws_cdk/aws_globalaccelerator/__init__.py,sha256=ZJGLftffi39az7mDXUqc3ZlIyyTk9h8Fk_O2PWY_tvc,234662
126
126
  aws_cdk/aws_globalaccelerator_endpoints/__init__.py,sha256=_hFh1G-qXaY8fW1weNy7duMb6LWqPPc4KhtF5LnMQYo,26848
@@ -166,7 +166,7 @@ aws_cdk/aws_lambda_destinations/__init__.py,sha256=WHB7Vk6jk0pwFVUEAPGfFuSUUOJir
166
166
  aws_cdk/aws_lambda_event_sources/__init__.py,sha256=Ri-64QARvUi_36M5jEEhys984r0byyfiZT7pJoxnRqo,251475
167
167
  aws_cdk/aws_lambda_nodejs/__init__.py,sha256=EJV8TXc1i44EvPDQpFqT48VslnPLmto8uDCyL6Q5yAU,177672
168
168
  aws_cdk/aws_launchwizard/__init__.py,sha256=IIhLlYmrtOMEEZ1gwM_2cV6w_0fAxXEbUn6zzMp97fw,24196
169
- aws_cdk/aws_lex/__init__.py,sha256=cXgE8FN0H_zhkLAdor73FcAgBG1Fox4FJazex3kXkOc,795828
169
+ aws_cdk/aws_lex/__init__.py,sha256=G32axmFmiIWfi1-wJr1KvrO3yEMl7vXP3ZtpN2OCges,860136
170
170
  aws_cdk/aws_licensemanager/__init__.py,sha256=y37V03_LDcfC2j681MxlhN1J5O5o3dJjFZnFJ0u7V9U,87983
171
171
  aws_cdk/aws_lightsail/__init__.py,sha256=KmkcfLrR3CMiPBEo6eQynMCi4eWi-nmK_zzFAYh-f1E,540635
172
172
  aws_cdk/aws_location/__init__.py,sha256=2m3Ciqu_0iKh69b06NzK5QsOLco3PQdAlvFTaX6EnYY,209081
@@ -182,7 +182,7 @@ aws_cdk/aws_mediaconnect/__init__.py,sha256=x8hSfnBuoWB8CnS1C0mDlUXti9MwwYnS2WYN
182
182
  aws_cdk/aws_mediaconvert/__init__.py,sha256=ZfjtSjqYyAhLR-O8I46o8VoKV0BaquNucRO6JH6Wdvk,90282
183
183
  aws_cdk/aws_medialive/__init__.py,sha256=1knRi3Mwq2KOaJvd42qXvlpLV7eREUFm-BOXilanlFk,2000543
184
184
  aws_cdk/aws_mediapackage/__init__.py,sha256=4JVrXRSIj0JAQxOe0I2PHHaTmOGSnKxeiDYd3TxgTD0,443187
185
- aws_cdk/aws_mediapackagev2/__init__.py,sha256=Hc3bq-ngI5WrbIpdSn0yicJhKys_N2zUDLROBvfRXe8,252751
185
+ aws_cdk/aws_mediapackagev2/__init__.py,sha256=O9Lq0FAQ5PanLJdVcsc6pZyRO_2nyDcCvnY2YqqV4Gc,252807
186
186
  aws_cdk/aws_mediastore/__init__.py,sha256=q-oy27t6Z9XihVlcW0gtbWltKaLyj4dCNKJfVyOrp0U,59415
187
187
  aws_cdk/aws_mediatailor/__init__.py,sha256=9NWuRhXCrkEzRuezKWVxxfNdYXdUqBtuLSu99er--V4,280186
188
188
  aws_cdk/aws_memorydb/__init__.py,sha256=s6fk7RnyZKPlb3y6-RKa92IcCMe6uZBqjow4zq1gw0c,181949
@@ -196,7 +196,7 @@ aws_cdk/aws_nimblestudio/__init__.py,sha256=HfPXX6dd1EIraJtw037w7kCsDHon6TRDgE7O
196
196
  aws_cdk/aws_notifications/__init__.py,sha256=fCaVAPG-9InVw1JbSilbBL5fk2zQZoWmaxk5cAMyVpk,91549
197
197
  aws_cdk/aws_notificationscontacts/__init__.py,sha256=mcjKdAlwKIg6bZM3f1sqC25vc9WcY3N-W5bbTLKQVDY,25712
198
198
  aws_cdk/aws_oam/__init__.py,sha256=ISahRlFBCZAwZGGE-Max2HHBaIlBWrfOmf8GA_dUzRA,51706
199
- aws_cdk/aws_omics/__init__.py,sha256=5ptE8C4soHiasnK-nxD1A7sI4fbu8GlyoIPSA1ckGDc,207293
199
+ aws_cdk/aws_omics/__init__.py,sha256=MQYmIuX-5ZG1HlqfzdwZIateio4jqbE0IVvilkktCwg,208675
200
200
  aws_cdk/aws_opensearchserverless/__init__.py,sha256=ey2vDUpdgwOqiZeMkKQux8PGsbNR2p-KZJWKbO9A4ps,167776
201
201
  aws_cdk/aws_opensearchservice/__init__.py,sha256=Yc5n4UFsZFHS_LYBVJFjhfelvSx1sR6v4_dFghN2GBU,656149
202
202
  aws_cdk/aws_opsworks/__init__.py,sha256=8V_ueRxKAdkbxMoaSbJNbdrlbSbswYlEaFCSzm-aHk4,437770
@@ -207,7 +207,7 @@ aws_cdk/aws_panorama/__init__.py,sha256=T5eqx3YFWeQw8rMi9e2_G_3x9-UMHB4Y1f0OnwvC
207
207
  aws_cdk/aws_paymentcryptography/__init__.py,sha256=hjOBxukE8Xhc8v4aca53WUlXuNeterb4yG9Avq-ZGaM,62823
208
208
  aws_cdk/aws_pcaconnectorad/__init__.py,sha256=GcT41w5KSn6z8NFfXwbXcYQqbhucmIXLt-pzKO-fWxs,387593
209
209
  aws_cdk/aws_pcaconnectorscep/__init__.py,sha256=_GEtUgN6V8GlL8ZX4BJk6u8HWrzlxxEsXAA3tIeZiEc,45124
210
- aws_cdk/aws_pcs/__init__.py,sha256=hXEuWXtt67O4ZreEMs3ZnD3sR9heKaw3A7GIS4GILlg,149706
210
+ aws_cdk/aws_pcs/__init__.py,sha256=jkVUBEeaPzX2ZA95NdXACcRdZeFFmqr3DCwF9wq8F-E,156241
211
211
  aws_cdk/aws_personalize/__init__.py,sha256=AvUNyVwnqzb784BilPiv8Eb6Yi_WkEaWjc_wky01Ueo,137374
212
212
  aws_cdk/aws_pinpoint/__init__.py,sha256=h9secEtICDcLaQG5j78L4JLIBf3mWNfF4giKyFentgw,862368
213
213
  aws_cdk/aws_pinpointemail/__init__.py,sha256=ZFWliw43D_CFFVIFEJ5Ke98HCxSvfD7dvv62Dm8T6co,139494
@@ -218,7 +218,7 @@ aws_cdk/aws_qldb/__init__.py,sha256=Y77mQlE_bPnvp2-xi6Zx7Nqq88MVjB0bGsFskfkTpj8,
218
218
  aws_cdk/aws_quicksight/__init__.py,sha256=I_xjt_81NI6zxT74tbSJwK0mXkhvUrVte4B_C2IRTj8,14396826
219
219
  aws_cdk/aws_ram/__init__.py,sha256=hTueUpQ-pdpE9TIHA7Ekd4-IMhT006gRbqhaUtTDDy0,51838
220
220
  aws_cdk/aws_rbin/__init__.py,sha256=CzabGGl5JnclFXLGuB8hu8bf_z0rWog3FqYK7o84QYo,50396
221
- aws_cdk/aws_rds/__init__.py,sha256=wUsYDL7pQn81bf-3TvHON2BZTrZG7KGF7E4vPZX9Fgw,2953714
221
+ aws_cdk/aws_rds/__init__.py,sha256=0P3NEbWjato2ANbph_m8kjM4SSpZ4lQEwK1H8pG_TXc,2954319
222
222
  aws_cdk/aws_redshift/__init__.py,sha256=_bz821c0euCtdo8lBVuh1EQ7r3Rg3kvzgCfEJz1bmLw,405044
223
223
  aws_cdk/aws_redshiftserverless/__init__.py,sha256=A8Wu4_RQor3WQ6McpxxYM-V4JqRsY4RmT51FPs_lrjQ,191791
224
224
  aws_cdk/aws_refactorspaces/__init__.py,sha256=HlrRPKH0kwPz6Ka6zooBl3hqU5s6lpjiLrMjJXHDIro,123625
@@ -227,7 +227,7 @@ aws_cdk/aws_resiliencehub/__init__.py,sha256=fVXYuaTALgUF5aK7W7L9ZZjgN7DyBDA1k0s
227
227
  aws_cdk/aws_resourceexplorer2/__init__.py,sha256=fy4Sx51rlG1xHflA9mL_jNRyjPo0z0uO2jGUEQW53v8,57498
228
228
  aws_cdk/aws_resourcegroups/__init__.py,sha256=Rh9PKqg3qVYRR5-J-UwGSgXmHR2OI24ocDwqYBAKRdo,76425
229
229
  aws_cdk/aws_robomaker/__init__.py,sha256=fcfuD-uTjGAQR8xtwaCMvpBb8HXT_6toIeq4b_DENjI,128242
230
- aws_cdk/aws_rolesanywhere/__init__.py,sha256=Lf9TD2OTUTE2ggYY9GrlVDpSO3O28Z6KOFqPHYZskGY,95356
230
+ aws_cdk/aws_rolesanywhere/__init__.py,sha256=pYrX3APEgnzIlhVHa9Dz6ftXFqXBOogvrPwHGLXUuR0,95265
231
231
  aws_cdk/aws_route53/__init__.py,sha256=aWqfMYain_W3HfhvELvwhvlSKvdairRFBQ0jdFucLmg,1059712
232
232
  aws_cdk/aws_route53_patterns/__init__.py,sha256=oPfJym9p6xh0bTOBS9rmuZR3gXNSRCOTJUsQ3e8qsz0,13542
233
233
  aws_cdk/aws_route53_targets/__init__.py,sha256=betoS418gIa4FZ2PLBT21s4gHoe_UW-LeFlkWWCjxdc,47771
@@ -244,7 +244,7 @@ aws_cdk/aws_s3express/__init__.py,sha256=Ey2TqZ09cdHtl8rujUVC1IgQa54qiT2B1tFQGzC
244
244
  aws_cdk/aws_s3objectlambda/__init__.py,sha256=SIlxWqJL2Ssm_ypY8fqfOrr0i01Swdw5eG1SIOPNqBg,68692
245
245
  aws_cdk/aws_s3outposts/__init__.py,sha256=E_82WGxBiu2QGNbY88JpkS5qvNNiQ9Hb9Thi3ZHV9k8,115636
246
246
  aws_cdk/aws_s3tables/__init__.py,sha256=MMZCU_MHyXNXJ918X5NUrs5JFa4H5lz6PPexI6S_5iI,40695
247
- aws_cdk/aws_sagemaker/__init__.py,sha256=aVX83CcliCdaOT_JZ_bixF6su-a-W4CR7RgtdyP16h0,3184405
247
+ aws_cdk/aws_sagemaker/__init__.py,sha256=K-jJDWxCIp3st49cJgbfUMFxdnA9ilYyqaYyhiKmQLU,3186879
248
248
  aws_cdk/aws_sam/__init__.py,sha256=GwhKjo0X2m3Hcdj0nmqqVJkGn9h2WbkB5UL_pidSH44,757717
249
249
  aws_cdk/aws_scheduler/__init__.py,sha256=dOaQvsfuYZUiAvU2d4B4DjR-TGiIl8UtufRnXM3nx3o,380484
250
250
  aws_cdk/aws_scheduler_targets/__init__.py,sha256=bpFLuwpv2KIx7T93f8GnR1KWdy-ptT8iQbEMbLGmsYE,217529
@@ -255,7 +255,7 @@ aws_cdk/aws_securitylake/__init__.py,sha256=7gR9WmdzLi5h4N2GADa1IlNLWlxZQeAO7JZL
255
255
  aws_cdk/aws_servicecatalog/__init__.py,sha256=VxzeohtVbQs6NibYuWmvCqQj1ZGFgDPemumrl14UT8I,547059
256
256
  aws_cdk/aws_servicecatalogappregistry/__init__.py,sha256=urPoS8H7S8SUOPqgBx-YVblPFwIfkmzt5T8PcfO14u8,57183
257
257
  aws_cdk/aws_servicediscovery/__init__.py,sha256=u3gmS-WhyDq0h1eHmMbPHxlnHI0msRFEXq8XxMwb7Bk,370847
258
- aws_cdk/aws_ses/__init__.py,sha256=GM5itnL0NgEJVGwS5JaPPs0Kl9VbvaBeG9Jqn1GtwxE,992565
258
+ aws_cdk/aws_ses/__init__.py,sha256=Cx_y3q1qOuMW1tMzOlRlZfA3wNffisIMdz1-poWejC8,1002269
259
259
  aws_cdk/aws_ses_actions/__init__.py,sha256=OL6WyVSh2wmikWy6ohT9tk__mIuBFBVM6hr7-CT14HU,51664
260
260
  aws_cdk/aws_shield/__init__.py,sha256=u2HOZSSMan1klAHeQMyi9q_RpsWBZo_5rstEk1FZLSc,105419
261
261
  aws_cdk/aws_signer/__init__.py,sha256=Ag0bfvDl04MvT7dmyowjo5w3PKcafakGbkD0Zry9qhY,59675
@@ -267,12 +267,12 @@ aws_cdk/aws_ssm/__init__.py,sha256=TktOEWRSdK6oyV96_suVKDGbS_6lhbDzaY0mP9xGDUM,5
267
267
  aws_cdk/aws_ssmcontacts/__init__.py,sha256=7l7Y9jErE5FnEVXYd_EsYgg0oBSWwBPvd71xga1ftGQ,141854
268
268
  aws_cdk/aws_ssmguiconnect/__init__.py,sha256=ymtPCRCO42MarjVcqKX4wEHfYcLxDEAlzsItoFkyKTs,26595
269
269
  aws_cdk/aws_ssmincidents/__init__.py,sha256=GLTVzPW7exIco8ZbhBwZFXm7WeNRkHD-RDASHf-gpWU,113407
270
- aws_cdk/aws_ssmquicksetup/__init__.py,sha256=fIjNe91y8zelD4tkxg1XEgPhVWuz-5zpB_XEiTzlXoE,81355
270
+ aws_cdk/aws_ssmquicksetup/__init__.py,sha256=0njPQPYIJMcdVNqLGaSA3yZSldIxDR4ZitZY5MufwIo,82733
271
271
  aws_cdk/aws_sso/__init__.py,sha256=cVECvphmmkiiwwkz5D4fTc1hvpHZh2GJ5HIPkojtk2s,157127
272
272
  aws_cdk/aws_stepfunctions/__init__.py,sha256=rAedrIzxvnK3sCQs9zzUD7PxWjFFYtyUrlopXLH00K8,1428188
273
273
  aws_cdk/aws_stepfunctions_tasks/__init__.py,sha256=9xk2EOYD82Zof6itnykusYiY5KnSMZz3eAd-MzYWjkM,5121484
274
274
  aws_cdk/aws_supportapp/__init__.py,sha256=B32RErRZHGz0WztdcmabGTML_BGJERh8Cj7I1w_f048,49292
275
- aws_cdk/aws_synthetics/__init__.py,sha256=fQotOo03o8PySef24UyvWYBGQ5c1GgcGAf5XWxEi__w,277778
275
+ aws_cdk/aws_synthetics/__init__.py,sha256=XHk3n999lYMPGkrGndHH1J6GzK5L8mV42kX7gLjwrJI,284873
276
276
  aws_cdk/aws_systemsmanagersap/__init__.py,sha256=H4yAmj_C2Oe0FeANFvHbx3Ybw7_xIVMm7HJlaYqQq9Q,42113
277
277
  aws_cdk/aws_timestream/__init__.py,sha256=TJnIxEzY83D2WVXvS5fKe6Rc0b14FKEcdDP4LcYo5Lc,246374
278
278
  aws_cdk/aws_transfer/__init__.py,sha256=auhwN2YDQkXaadz9fhSJ0YBVfpCmC1vHKWzW2gzUU_I,465470
@@ -281,9 +281,9 @@ aws_cdk/aws_voiceid/__init__.py,sha256=oNdK-k5gt0-X0evdU_Qxb39gB6Ec6AxIok_RBnEUD
281
281
  aws_cdk/aws_vpclattice/__init__.py,sha256=GNrjdOOGHEh0ePF3OdwDp2sagqShBbhMDwR8B3Of6rc,378525
282
282
  aws_cdk/aws_waf/__init__.py,sha256=RBdzr4Bd3UjK9V5TtdyemLWOY0WR-JUEh0WjHBTJuRU,212199
283
283
  aws_cdk/aws_wafregional/__init__.py,sha256=j18Bfp911qSJGxfyxxs5VOPxhFbiCeZW8Tz4wFC4pa4,276775
284
- aws_cdk/aws_wafv2/__init__.py,sha256=EpzfydDiIKFDS0-AQaIMVr_yQim4JMKMC91NxFYE6zU,1441927
284
+ aws_cdk/aws_wafv2/__init__.py,sha256=2Cxr33Gcrx1e_2r0QFrqulWHKbRrbpJ_Ko0UdoanwEg,1441991
285
285
  aws_cdk/aws_wisdom/__init__.py,sha256=1-KxOqNZwY_fuDhvUgY1aQ3jwLL6Q6Ng8gpCoy0bgF4,641967
286
- aws_cdk/aws_workspaces/__init__.py,sha256=DYlIFlalPInZuC0lJuveEYAGG_mp10zU9te1SPoMbmc,101085
286
+ aws_cdk/aws_workspaces/__init__.py,sha256=eRCMsMshUPO2_Av-DJ63316u-VNqVzU0N113v1tlggk,101217
287
287
  aws_cdk/aws_workspacesthinclient/__init__.py,sha256=3Gvr9Lw4Z82ZIukKFpOTHQTiAG4UrVo6m6IsfWaCK-w,49529
288
288
  aws_cdk/aws_workspacesweb/__init__.py,sha256=CppQEMxEhUPkEPh6MmFFfhsm1c2TybopdiZGuuiAEfA,280980
289
289
  aws_cdk/aws_xray/__init__.py,sha256=xEfRY-cPsnAqrrYueXFUxXskU4CxwejB1wrTMGrNKCc,106868
@@ -296,9 +296,9 @@ aws_cdk/lambda_layer_node_proxy_agent/__init__.py,sha256=ssdgQwTnWcr4HFK6euFpZ93
296
296
  aws_cdk/pipelines/__init__.py,sha256=5iOtEZ3bLc2t8l3qfUfAispqsOGs5CI26NoMCVDjZyk,403113
297
297
  aws_cdk/region_info/__init__.py,sha256=5GAO_ld0t-3caLW28eV9FWHMrqRq5CyV1L4pFALx9Y4,39656
298
298
  aws_cdk/triggers/__init__.py,sha256=ItMJLn-7KoW5XFFLrWy7aglFEqDU-fTpL6Z5ATzWKVI,123842
299
- aws_cdk_lib-2.197.0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
300
- aws_cdk_lib-2.197.0.dist-info/METADATA,sha256=7n55Svj1p2WLE_AfuSchvCdNMqBkfsEZKyPMX-x-MOg,62895
301
- aws_cdk_lib-2.197.0.dist-info/NOTICE,sha256=lrDSwMl9zn-5xv2z3qp2Rw6Nm8pARejpIJ5eXzJtuQk,41177
302
- aws_cdk_lib-2.197.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
303
- aws_cdk_lib-2.197.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
304
- aws_cdk_lib-2.197.0.dist-info/RECORD,,
299
+ aws_cdk_lib-2.198.0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
300
+ aws_cdk_lib-2.198.0.dist-info/METADATA,sha256=t6bYkeq8n8DxvrUp71G17IU2FyeJkDNy_e2ku2mUXh8,62895
301
+ aws_cdk_lib-2.198.0.dist-info/NOTICE,sha256=lrDSwMl9zn-5xv2z3qp2Rw6Nm8pARejpIJ5eXzJtuQk,41177
302
+ aws_cdk_lib-2.198.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
303
+ aws_cdk_lib-2.198.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
304
+ aws_cdk_lib-2.198.0.dist-info/RECORD,,