aws-cdk-lib 2.143.1__py3-none-any.whl → 2.144.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.

@@ -140,6 +140,7 @@ from ..aws_iam import (
140
140
  from ..aws_kms import IKey as _IKey_5f11635f
141
141
  from ..aws_lambda import (
142
142
  AdotInstrumentationConfig as _AdotInstrumentationConfig_7c38d65d,
143
+ ApplicationLogLevel as _ApplicationLogLevel_cd92660a,
143
144
  Architecture as _Architecture_12d5a53f,
144
145
  Code as _Code_7848f942,
145
146
  FileSystem as _FileSystem_a5fa005d,
@@ -156,6 +157,7 @@ from ..aws_lambda import (
156
157
  Runtime as _Runtime_b4eaa844,
157
158
  RuntimeManagementMode as _RuntimeManagementMode_688c173b,
158
159
  SnapStartConf as _SnapStartConf_2ffaa769,
160
+ SystemLogLevel as _SystemLogLevel_aea49dc2,
159
161
  Tracing as _Tracing_9fe8e2bb,
160
162
  VersionOptions as _VersionOptions_981bb3c0,
161
163
  )
@@ -405,6 +407,7 @@ class TriggerFunction(
405
407
  allow_all_outbound: typing.Optional[builtins.bool] = None,
406
408
  allow_public_subnet: typing.Optional[builtins.bool] = None,
407
409
  application_log_level: typing.Optional[builtins.str] = None,
410
+ application_log_level_v2: typing.Optional[_ApplicationLogLevel_cd92660a] = None,
408
411
  architecture: typing.Optional[_Architecture_12d5a53f] = None,
409
412
  code_signing_config: typing.Optional[_ICodeSigningConfig_edb41d1f] = None,
410
413
  current_version_options: typing.Optional[typing.Union[_VersionOptions_981bb3c0, typing.Dict[builtins.str, typing.Any]]] = None,
@@ -438,6 +441,7 @@ class TriggerFunction(
438
441
  security_groups: typing.Optional[typing.Sequence[_ISecurityGroup_acf8a799]] = None,
439
442
  snap_start: typing.Optional[_SnapStartConf_2ffaa769] = None,
440
443
  system_log_level: typing.Optional[builtins.str] = None,
444
+ system_log_level_v2: typing.Optional[_SystemLogLevel_aea49dc2] = None,
441
445
  timeout: typing.Optional[_Duration_4839e8c3] = None,
442
446
  tracing: typing.Optional[_Tracing_9fe8e2bb] = None,
443
447
  vpc: typing.Optional[_IVpc_f30d5663] = None,
@@ -459,7 +463,8 @@ class TriggerFunction(
459
463
  :param adot_instrumentation: Specify the configuration of AWS Distro for OpenTelemetry (ADOT) instrumentation. Default: - No ADOT instrumentation
460
464
  :param allow_all_outbound: Whether to allow the Lambda to send all network traffic. If set to false, you must individually add traffic rules to allow the Lambda to connect to network targets. Do not specify this property if the ``securityGroups`` or ``securityGroup`` property is set. Instead, configure ``allowAllOutbound`` directly on the security group. Default: true
461
465
  :param allow_public_subnet: Lambda Functions in a public subnet can NOT access the internet. Use this property to acknowledge this limitation and still place the function in a public subnet. Default: false
462
- :param application_log_level: Sets the application log level for the function. Default: "INFO"
466
+ :param application_log_level: (deprecated) Sets the application log level for the function. Default: "INFO"
467
+ :param application_log_level_v2: Sets the application log level for the function. Default: ApplicationLogLevel.INFO
463
468
  :param architecture: The system architectures compatible with this lambda function. Default: Architecture.X86_64
464
469
  :param code_signing_config: Code signing config associated with this function. Default: - Not Sign the Code
465
470
  :param current_version_options: Options for the ``lambda.Version`` resource automatically created by the ``fn.currentVersion`` method. Default: - default options as described in ``VersionOptions``
@@ -477,7 +482,7 @@ class TriggerFunction(
477
482
  :param insights_version: Specify the version of CloudWatch Lambda insights to use for monitoring. Default: - No Lambda Insights
478
483
  :param ipv6_allowed_for_dual_stack: Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets. Only used if 'vpc' is supplied. Default: false
479
484
  :param layers: A list of layers to add to the function's execution environment. You can configure your Lambda function to pull in additional code during initialization in the form of layers. Layers are packages of libraries or other dependencies that can be used by multiple functions. Default: - No layers.
480
- :param log_format: Sets the logFormat for the function. Default: "Text"
485
+ :param log_format: (deprecated) Sets the logFormat for the function. Default: "Text"
481
486
  :param logging_format: Sets the loggingFormat for the function. Default: LoggingFormat.TEXT
482
487
  :param log_group: The log group the function sends logs to. By default, Lambda functions send logs to an automatically created default log group named /aws/lambda/<function name>. However you cannot change the properties of this auto-created log group using the AWS CDK, e.g. you cannot set a different log retention. Use the ``logGroup`` property to create a fully customizable LogGroup ahead of time, and instruct the Lambda function to send logs to it. Providing a user-controlled log group was rolled out to commercial regions on 2023-11-16. If you are deploying to another type of region, please check regional availability first. Default: ``/aws/lambda/${this.functionName}`` - default log group created by Lambda
483
488
  :param log_retention: The number of days log events are kept in CloudWatch Logs. When updating this property, unsetting it doesn't remove the log retention policy. To remove the retention policy, set the value to ``INFINITE``. This is a legacy API and we strongly recommend you move away from it if you can. Instead create a fully customizable log group with ``logs.LogGroup`` and use the ``logGroup`` property to instruct the Lambda function to send logs to it. Migrating from ``logRetention`` to ``logGroup`` will cause the name of the log group to change. Users and code and referencing the name verbatim will have to adjust. In AWS CDK code, you can access the log group name directly from the LogGroup construct:: import * as logs from 'aws-cdk-lib/aws-logs'; declare const myLogGroup: logs.LogGroup; myLogGroup.logGroupName; Default: logs.RetentionDays.INFINITE
@@ -492,7 +497,8 @@ class TriggerFunction(
492
497
  :param runtime_management_mode: Sets the runtime management configuration for a function's version. Default: Auto
493
498
  :param security_groups: The list of security groups to associate with the Lambda's network interfaces. Only used if 'vpc' is supplied. Default: - If the function is placed within a VPC and a security group is not specified, either by this or securityGroup prop, a dedicated security group will be created for this function.
494
499
  :param snap_start: Enable SnapStart for Lambda Function. SnapStart is currently supported only for Java 11, 17 runtime Default: - No snapstart
495
- :param system_log_level: Sets the system log level for the function. Default: "INFO"
500
+ :param system_log_level: (deprecated) Sets the system log level for the function. Default: "INFO"
501
+ :param system_log_level_v2: Sets the system log level for the function. Default: SystemLogLevel.INFO
496
502
  :param timeout: The function execution time (in seconds) after which Lambda terminates the function. Because the execution time affects cost, set this value based on the function's expected execution time. Default: Duration.seconds(3)
497
503
  :param tracing: Enable AWS X-Ray Tracing for Lambda Function. Default: Tracing.Disabled
498
504
  :param vpc: VPC network to place Lambda network interfaces. Specify this if the Lambda function needs to access resources in a VPC. This is required when ``vpcSubnets`` is specified. Default: - Function is not placed within a VPC.
@@ -517,6 +523,7 @@ class TriggerFunction(
517
523
  allow_all_outbound=allow_all_outbound,
518
524
  allow_public_subnet=allow_public_subnet,
519
525
  application_log_level=application_log_level,
526
+ application_log_level_v2=application_log_level_v2,
520
527
  architecture=architecture,
521
528
  code_signing_config=code_signing_config,
522
529
  current_version_options=current_version_options,
@@ -550,6 +557,7 @@ class TriggerFunction(
550
557
  security_groups=security_groups,
551
558
  snap_start=snap_start,
552
559
  system_log_level=system_log_level,
560
+ system_log_level_v2=system_log_level_v2,
553
561
  timeout=timeout,
554
562
  tracing=tracing,
555
563
  vpc=vpc,
@@ -880,6 +888,7 @@ class TriggerProps(TriggerOptions):
880
888
  "allow_all_outbound": "allowAllOutbound",
881
889
  "allow_public_subnet": "allowPublicSubnet",
882
890
  "application_log_level": "applicationLogLevel",
891
+ "application_log_level_v2": "applicationLogLevelV2",
883
892
  "architecture": "architecture",
884
893
  "code_signing_config": "codeSigningConfig",
885
894
  "current_version_options": "currentVersionOptions",
@@ -913,6 +922,7 @@ class TriggerProps(TriggerOptions):
913
922
  "security_groups": "securityGroups",
914
923
  "snap_start": "snapStart",
915
924
  "system_log_level": "systemLogLevel",
925
+ "system_log_level_v2": "systemLogLevelV2",
916
926
  "timeout": "timeout",
917
927
  "tracing": "tracing",
918
928
  "vpc": "vpc",
@@ -937,6 +947,7 @@ class TriggerFunctionProps(_FunctionProps_a308e854, TriggerOptions):
937
947
  allow_all_outbound: typing.Optional[builtins.bool] = None,
938
948
  allow_public_subnet: typing.Optional[builtins.bool] = None,
939
949
  application_log_level: typing.Optional[builtins.str] = None,
950
+ application_log_level_v2: typing.Optional[_ApplicationLogLevel_cd92660a] = None,
940
951
  architecture: typing.Optional[_Architecture_12d5a53f] = None,
941
952
  code_signing_config: typing.Optional[_ICodeSigningConfig_edb41d1f] = None,
942
953
  current_version_options: typing.Optional[typing.Union[_VersionOptions_981bb3c0, typing.Dict[builtins.str, typing.Any]]] = None,
@@ -970,6 +981,7 @@ class TriggerFunctionProps(_FunctionProps_a308e854, TriggerOptions):
970
981
  security_groups: typing.Optional[typing.Sequence[_ISecurityGroup_acf8a799]] = None,
971
982
  snap_start: typing.Optional[_SnapStartConf_2ffaa769] = None,
972
983
  system_log_level: typing.Optional[builtins.str] = None,
984
+ system_log_level_v2: typing.Optional[_SystemLogLevel_aea49dc2] = None,
973
985
  timeout: typing.Optional[_Duration_4839e8c3] = None,
974
986
  tracing: typing.Optional[_Tracing_9fe8e2bb] = None,
975
987
  vpc: typing.Optional[_IVpc_f30d5663] = None,
@@ -990,7 +1002,8 @@ class TriggerFunctionProps(_FunctionProps_a308e854, TriggerOptions):
990
1002
  :param adot_instrumentation: Specify the configuration of AWS Distro for OpenTelemetry (ADOT) instrumentation. Default: - No ADOT instrumentation
991
1003
  :param allow_all_outbound: Whether to allow the Lambda to send all network traffic. If set to false, you must individually add traffic rules to allow the Lambda to connect to network targets. Do not specify this property if the ``securityGroups`` or ``securityGroup`` property is set. Instead, configure ``allowAllOutbound`` directly on the security group. Default: true
992
1004
  :param allow_public_subnet: Lambda Functions in a public subnet can NOT access the internet. Use this property to acknowledge this limitation and still place the function in a public subnet. Default: false
993
- :param application_log_level: Sets the application log level for the function. Default: "INFO"
1005
+ :param application_log_level: (deprecated) Sets the application log level for the function. Default: "INFO"
1006
+ :param application_log_level_v2: Sets the application log level for the function. Default: ApplicationLogLevel.INFO
994
1007
  :param architecture: The system architectures compatible with this lambda function. Default: Architecture.X86_64
995
1008
  :param code_signing_config: Code signing config associated with this function. Default: - Not Sign the Code
996
1009
  :param current_version_options: Options for the ``lambda.Version`` resource automatically created by the ``fn.currentVersion`` method. Default: - default options as described in ``VersionOptions``
@@ -1008,7 +1021,7 @@ class TriggerFunctionProps(_FunctionProps_a308e854, TriggerOptions):
1008
1021
  :param insights_version: Specify the version of CloudWatch Lambda insights to use for monitoring. Default: - No Lambda Insights
1009
1022
  :param ipv6_allowed_for_dual_stack: Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets. Only used if 'vpc' is supplied. Default: false
1010
1023
  :param layers: A list of layers to add to the function's execution environment. You can configure your Lambda function to pull in additional code during initialization in the form of layers. Layers are packages of libraries or other dependencies that can be used by multiple functions. Default: - No layers.
1011
- :param log_format: Sets the logFormat for the function. Default: "Text"
1024
+ :param log_format: (deprecated) Sets the logFormat for the function. Default: "Text"
1012
1025
  :param logging_format: Sets the loggingFormat for the function. Default: LoggingFormat.TEXT
1013
1026
  :param log_group: The log group the function sends logs to. By default, Lambda functions send logs to an automatically created default log group named /aws/lambda/<function name>. However you cannot change the properties of this auto-created log group using the AWS CDK, e.g. you cannot set a different log retention. Use the ``logGroup`` property to create a fully customizable LogGroup ahead of time, and instruct the Lambda function to send logs to it. Providing a user-controlled log group was rolled out to commercial regions on 2023-11-16. If you are deploying to another type of region, please check regional availability first. Default: ``/aws/lambda/${this.functionName}`` - default log group created by Lambda
1014
1027
  :param log_retention: The number of days log events are kept in CloudWatch Logs. When updating this property, unsetting it doesn't remove the log retention policy. To remove the retention policy, set the value to ``INFINITE``. This is a legacy API and we strongly recommend you move away from it if you can. Instead create a fully customizable log group with ``logs.LogGroup`` and use the ``logGroup`` property to instruct the Lambda function to send logs to it. Migrating from ``logRetention`` to ``logGroup`` will cause the name of the log group to change. Users and code and referencing the name verbatim will have to adjust. In AWS CDK code, you can access the log group name directly from the LogGroup construct:: import * as logs from 'aws-cdk-lib/aws-logs'; declare const myLogGroup: logs.LogGroup; myLogGroup.logGroupName; Default: logs.RetentionDays.INFINITE
@@ -1023,7 +1036,8 @@ class TriggerFunctionProps(_FunctionProps_a308e854, TriggerOptions):
1023
1036
  :param runtime_management_mode: Sets the runtime management configuration for a function's version. Default: Auto
1024
1037
  :param security_groups: The list of security groups to associate with the Lambda's network interfaces. Only used if 'vpc' is supplied. Default: - If the function is placed within a VPC and a security group is not specified, either by this or securityGroup prop, a dedicated security group will be created for this function.
1025
1038
  :param snap_start: Enable SnapStart for Lambda Function. SnapStart is currently supported only for Java 11, 17 runtime Default: - No snapstart
1026
- :param system_log_level: Sets the system log level for the function. Default: "INFO"
1039
+ :param system_log_level: (deprecated) Sets the system log level for the function. Default: "INFO"
1040
+ :param system_log_level_v2: Sets the system log level for the function. Default: SystemLogLevel.INFO
1027
1041
  :param timeout: The function execution time (in seconds) after which Lambda terminates the function. Because the execution time affects cost, set this value based on the function's expected execution time. Default: Duration.seconds(3)
1028
1042
  :param tracing: Enable AWS X-Ray Tracing for Lambda Function. Default: Tracing.Disabled
1029
1043
  :param vpc: VPC network to place Lambda network interfaces. Specify this if the Lambda function needs to access resources in a VPC. This is required when ``vpcSubnets`` is specified. Default: - Function is not placed within a VPC.
@@ -1066,6 +1080,7 @@ class TriggerFunctionProps(_FunctionProps_a308e854, TriggerOptions):
1066
1080
  check_type(argname="argument allow_all_outbound", value=allow_all_outbound, expected_type=type_hints["allow_all_outbound"])
1067
1081
  check_type(argname="argument allow_public_subnet", value=allow_public_subnet, expected_type=type_hints["allow_public_subnet"])
1068
1082
  check_type(argname="argument application_log_level", value=application_log_level, expected_type=type_hints["application_log_level"])
1083
+ check_type(argname="argument application_log_level_v2", value=application_log_level_v2, expected_type=type_hints["application_log_level_v2"])
1069
1084
  check_type(argname="argument architecture", value=architecture, expected_type=type_hints["architecture"])
1070
1085
  check_type(argname="argument code_signing_config", value=code_signing_config, expected_type=type_hints["code_signing_config"])
1071
1086
  check_type(argname="argument current_version_options", value=current_version_options, expected_type=type_hints["current_version_options"])
@@ -1099,6 +1114,7 @@ class TriggerFunctionProps(_FunctionProps_a308e854, TriggerOptions):
1099
1114
  check_type(argname="argument security_groups", value=security_groups, expected_type=type_hints["security_groups"])
1100
1115
  check_type(argname="argument snap_start", value=snap_start, expected_type=type_hints["snap_start"])
1101
1116
  check_type(argname="argument system_log_level", value=system_log_level, expected_type=type_hints["system_log_level"])
1117
+ check_type(argname="argument system_log_level_v2", value=system_log_level_v2, expected_type=type_hints["system_log_level_v2"])
1102
1118
  check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
1103
1119
  check_type(argname="argument tracing", value=tracing, expected_type=type_hints["tracing"])
1104
1120
  check_type(argname="argument vpc", value=vpc, expected_type=type_hints["vpc"])
@@ -1130,6 +1146,8 @@ class TriggerFunctionProps(_FunctionProps_a308e854, TriggerOptions):
1130
1146
  self._values["allow_public_subnet"] = allow_public_subnet
1131
1147
  if application_log_level is not None:
1132
1148
  self._values["application_log_level"] = application_log_level
1149
+ if application_log_level_v2 is not None:
1150
+ self._values["application_log_level_v2"] = application_log_level_v2
1133
1151
  if architecture is not None:
1134
1152
  self._values["architecture"] = architecture
1135
1153
  if code_signing_config is not None:
@@ -1196,6 +1214,8 @@ class TriggerFunctionProps(_FunctionProps_a308e854, TriggerOptions):
1196
1214
  self._values["snap_start"] = snap_start
1197
1215
  if system_log_level is not None:
1198
1216
  self._values["system_log_level"] = system_log_level
1217
+ if system_log_level_v2 is not None:
1218
+ self._values["system_log_level_v2"] = system_log_level_v2
1199
1219
  if timeout is not None:
1200
1220
  self._values["timeout"] = timeout
1201
1221
  if tracing is not None:
@@ -1296,13 +1316,28 @@ class TriggerFunctionProps(_FunctionProps_a308e854, TriggerOptions):
1296
1316
 
1297
1317
  @builtins.property
1298
1318
  def application_log_level(self) -> typing.Optional[builtins.str]:
1299
- '''Sets the application log level for the function.
1319
+ '''(deprecated) Sets the application log level for the function.
1300
1320
 
1301
1321
  :default: "INFO"
1322
+
1323
+ :deprecated: Use ``applicationLogLevelV2`` as a property instead.
1324
+
1325
+ :stability: deprecated
1302
1326
  '''
1303
1327
  result = self._values.get("application_log_level")
1304
1328
  return typing.cast(typing.Optional[builtins.str], result)
1305
1329
 
1330
+ @builtins.property
1331
+ def application_log_level_v2(
1332
+ self,
1333
+ ) -> typing.Optional[_ApplicationLogLevel_cd92660a]:
1334
+ '''Sets the application log level for the function.
1335
+
1336
+ :default: ApplicationLogLevel.INFO
1337
+ '''
1338
+ result = self._values.get("application_log_level_v2")
1339
+ return typing.cast(typing.Optional[_ApplicationLogLevel_cd92660a], result)
1340
+
1306
1341
  @builtins.property
1307
1342
  def architecture(self) -> typing.Optional[_Architecture_12d5a53f]:
1308
1343
  '''The system architectures compatible with this lambda function.
@@ -1487,9 +1522,13 @@ class TriggerFunctionProps(_FunctionProps_a308e854, TriggerOptions):
1487
1522
 
1488
1523
  @builtins.property
1489
1524
  def log_format(self) -> typing.Optional[builtins.str]:
1490
- '''Sets the logFormat for the function.
1525
+ '''(deprecated) Sets the logFormat for the function.
1491
1526
 
1492
1527
  :default: "Text"
1528
+
1529
+ :deprecated: Use ``loggingFormat`` as a property instead.
1530
+
1531
+ :stability: deprecated
1493
1532
  '''
1494
1533
  result = self._values.get("log_format")
1495
1534
  return typing.cast(typing.Optional[builtins.str], result)
@@ -1695,13 +1734,26 @@ class TriggerFunctionProps(_FunctionProps_a308e854, TriggerOptions):
1695
1734
 
1696
1735
  @builtins.property
1697
1736
  def system_log_level(self) -> typing.Optional[builtins.str]:
1698
- '''Sets the system log level for the function.
1737
+ '''(deprecated) Sets the system log level for the function.
1699
1738
 
1700
1739
  :default: "INFO"
1740
+
1741
+ :deprecated: Use ``systemLogLevelV2`` as a property instead.
1742
+
1743
+ :stability: deprecated
1701
1744
  '''
1702
1745
  result = self._values.get("system_log_level")
1703
1746
  return typing.cast(typing.Optional[builtins.str], result)
1704
1747
 
1748
+ @builtins.property
1749
+ def system_log_level_v2(self) -> typing.Optional[_SystemLogLevel_aea49dc2]:
1750
+ '''Sets the system log level for the function.
1751
+
1752
+ :default: SystemLogLevel.INFO
1753
+ '''
1754
+ result = self._values.get("system_log_level_v2")
1755
+ return typing.cast(typing.Optional[_SystemLogLevel_aea49dc2], result)
1756
+
1705
1757
  @builtins.property
1706
1758
  def timeout(self) -> typing.Optional[_Duration_4839e8c3]:
1707
1759
  '''The function execution time (in seconds) after which Lambda terminates the function.
@@ -1912,6 +1964,7 @@ def _typecheckingstub__6f34c5ba084706d20d6ef37a7f59673b20ed3425ffc7035fc8ea888e9
1912
1964
  allow_all_outbound: typing.Optional[builtins.bool] = None,
1913
1965
  allow_public_subnet: typing.Optional[builtins.bool] = None,
1914
1966
  application_log_level: typing.Optional[builtins.str] = None,
1967
+ application_log_level_v2: typing.Optional[_ApplicationLogLevel_cd92660a] = None,
1915
1968
  architecture: typing.Optional[_Architecture_12d5a53f] = None,
1916
1969
  code_signing_config: typing.Optional[_ICodeSigningConfig_edb41d1f] = None,
1917
1970
  current_version_options: typing.Optional[typing.Union[_VersionOptions_981bb3c0, typing.Dict[builtins.str, typing.Any]]] = None,
@@ -1945,6 +1998,7 @@ def _typecheckingstub__6f34c5ba084706d20d6ef37a7f59673b20ed3425ffc7035fc8ea888e9
1945
1998
  security_groups: typing.Optional[typing.Sequence[_ISecurityGroup_acf8a799]] = None,
1946
1999
  snap_start: typing.Optional[_SnapStartConf_2ffaa769] = None,
1947
2000
  system_log_level: typing.Optional[builtins.str] = None,
2001
+ system_log_level_v2: typing.Optional[_SystemLogLevel_aea49dc2] = None,
1948
2002
  timeout: typing.Optional[_Duration_4839e8c3] = None,
1949
2003
  tracing: typing.Optional[_Tracing_9fe8e2bb] = None,
1950
2004
  vpc: typing.Optional[_IVpc_f30d5663] = None,
@@ -2000,6 +2054,7 @@ def _typecheckingstub__b2f4b009b0160d566d798bfa6d813ccc8440e1a9e0f75c99449184a2f
2000
2054
  allow_all_outbound: typing.Optional[builtins.bool] = None,
2001
2055
  allow_public_subnet: typing.Optional[builtins.bool] = None,
2002
2056
  application_log_level: typing.Optional[builtins.str] = None,
2057
+ application_log_level_v2: typing.Optional[_ApplicationLogLevel_cd92660a] = None,
2003
2058
  architecture: typing.Optional[_Architecture_12d5a53f] = None,
2004
2059
  code_signing_config: typing.Optional[_ICodeSigningConfig_edb41d1f] = None,
2005
2060
  current_version_options: typing.Optional[typing.Union[_VersionOptions_981bb3c0, typing.Dict[builtins.str, typing.Any]]] = None,
@@ -2033,6 +2088,7 @@ def _typecheckingstub__b2f4b009b0160d566d798bfa6d813ccc8440e1a9e0f75c99449184a2f
2033
2088
  security_groups: typing.Optional[typing.Sequence[_ISecurityGroup_acf8a799]] = None,
2034
2089
  snap_start: typing.Optional[_SnapStartConf_2ffaa769] = None,
2035
2090
  system_log_level: typing.Optional[builtins.str] = None,
2091
+ system_log_level_v2: typing.Optional[_SystemLogLevel_aea49dc2] = None,
2036
2092
  timeout: typing.Optional[_Duration_4839e8c3] = None,
2037
2093
  tracing: typing.Optional[_Tracing_9fe8e2bb] = None,
2038
2094
  vpc: typing.Optional[_IVpc_f30d5663] = None,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-cdk-lib
3
- Version: 2.143.1
3
+ Version: 2.144.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
@@ -1,7 +1,7 @@
1
1
  aws_cdk/__init__.py,sha256=47OGar9usThIESdLmGAJ01EkXCul8t89HH99i1yS7TQ,1790313
2
2
  aws_cdk/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
- aws_cdk/_jsii/__init__.py,sha256=ZvM_0X4-DLsk7NtN6UMaRG-N5iaiqwVlQsJOPE8fXtA,571
4
- aws_cdk/_jsii/aws-cdk-lib@2.143.1.jsii.tgz,sha256=4-H5N2o9ohq-Qpm__FR0uBp8GP7h2C6lMiuLRHfMBog,22083597
3
+ aws_cdk/_jsii/__init__.py,sha256=MKFJpKywzrLHPru2RjeaLgNQuV8JKp_K5n3ovKxcoX0,571
4
+ aws_cdk/_jsii/aws-cdk-lib@2.144.0.jsii.tgz,sha256=n9KPQnDbuPwjGSyovFkRQGkhQK1TCTO2DvpQg9lp11w,22084807
5
5
  aws_cdk/alexa_ask/__init__.py,sha256=XIdNYPkbGyRD8clfb_qolycbFSGooWWn71wTtsEnW-U,35287
6
6
  aws_cdk/assertions/__init__.py,sha256=_QKmbeXDSApEi7L-n3HSXftNzpldlsZ5XPZeBBWWA4o,91337
7
7
  aws_cdk/aws_accessanalyzer/__init__.py,sha256=JiAHhmac9YzpELf-_UvGm7nfxopSF-mJ80UcwF-qUW0,41881
@@ -12,8 +12,8 @@ aws_cdk/aws_amplifyuibuilder/__init__.py,sha256=ogEqU7Ka80rzkXNkIeRCLHOxQ8M3XnRS
12
12
  aws_cdk/aws_apigateway/__init__.py,sha256=fVM6oLLyvBpNeNZ1js2PYixnr6n10_WJnrePzsvihhU,1849328
13
13
  aws_cdk/aws_apigatewayv2/__init__.py,sha256=ZIGQICbHKr8H6bRPt8ghdn21f4kL6c0yLFibQOoBTIM,1033042
14
14
  aws_cdk/aws_apigatewayv2_authorizers/__init__.py,sha256=f9xwOZMHEHRqG9JrD73ypWTFIpIB1O1IB55j2HNPHvo,50206
15
- aws_cdk/aws_apigatewayv2_integrations/__init__.py,sha256=6zXQca5DeqQkP3THsCq0cb8OJocpJV_qneyBhI1COiw,110876
16
- aws_cdk/aws_appconfig/__init__.py,sha256=e_pl-M_1FUFK1HSeu1HPyN6dctE1hNJn6x9Nx3PrGcU,700144
15
+ aws_cdk/aws_apigatewayv2_integrations/__init__.py,sha256=e7mmJx6qxn1FKnE3ag51y-sfvGOykav7WPQiNHTxp6Q,110936
16
+ aws_cdk/aws_appconfig/__init__.py,sha256=zDFnYrBoJ3tJHGyuSjiIAPpXyetwPOUFMwBW-7dwcng,705620
17
17
  aws_cdk/aws_appflow/__init__.py,sha256=6tK4iTRHpwoVnzFfdtU4u3DAEOzDWHVoY0oAhFyUl4M,783122
18
18
  aws_cdk/aws_appintegrations/__init__.py,sha256=YN2KdifnsNhG-j6kkzFMQeK2z0riKS80Ful-Sy7z4kA,86341
19
19
  aws_cdk/aws_applicationautoscaling/__init__.py,sha256=2TJ1Ex3yj1QUTtdMIJV--pexHc6MeN7RwvbTSvMGzFo,401459
@@ -35,25 +35,25 @@ aws_cdk/aws_backup/__init__.py,sha256=rVg8dwzNHXekpo7AW48LW1y2J_lk9gTYNNKz1P2s6k
35
35
  aws_cdk/aws_backupgateway/__init__.py,sha256=a4oqpwopOIUL8YceGixiI6zl_REj-tG3YbOjuMfhYsE,23336
36
36
  aws_cdk/aws_batch/__init__.py,sha256=bxpGMQSvmW3cCJfCL8qdj9pFWTuJGUH0xeV2GBpPLiM,1411461
37
37
  aws_cdk/aws_bcmdataexports/__init__.py,sha256=AjTO88JMbpKuTNN560R-CljLGGL8BAdB5DF8PLczV28,54582
38
- aws_cdk/aws_bedrock/__init__.py,sha256=USOlubbRJtmltgh6vRzVK8YXCmVJazXgSA3cV-jaAiQ,421091
38
+ aws_cdk/aws_bedrock/__init__.py,sha256=504ynOTtskm2et4Z_Z0COIViG8A5zZq-DvtLLG3iMW0,423614
39
39
  aws_cdk/aws_billingconductor/__init__.py,sha256=amm8R0Cx8Vc-p5e-1Nx0TmkT7E0wk7E3EPh5buHkWz0,141033
40
40
  aws_cdk/aws_budgets/__init__.py,sha256=fJ2jsqVLObi6aB0riL5uZnfmyuHwOY53UPPLrRdpzv0,161621
41
41
  aws_cdk/aws_cassandra/__init__.py,sha256=i8x_AKrT5smoAFq3HJiCl3eMsZde39ckYzRqODQlGzU,145735
42
42
  aws_cdk/aws_ce/__init__.py,sha256=5MWbTicQmaPD-bOn-moCnMivsLlzyfavHyHHLg_4H9g,81240
43
43
  aws_cdk/aws_certificatemanager/__init__.py,sha256=aE6sIepm8Bo4j-Rb7ndGouUQkA4pY_homNlyexV8jSY,152514
44
- aws_cdk/aws_chatbot/__init__.py,sha256=F1lXxLQCLRAHyVeUJyokvVODTx_2EjdxeMMmGHeobaE,104824
44
+ aws_cdk/aws_chatbot/__init__.py,sha256=0WHM-EFOg-yYUUBldfuoyyVT7KSHfx3_yfd3zxtyCio,110266
45
45
  aws_cdk/aws_cleanrooms/__init__.py,sha256=ZfHEQSoZlx_5WE1-dA-UR9JjqcHyKgzx0ztTPkREp4M,283054
46
46
  aws_cdk/aws_cleanroomsml/__init__.py,sha256=Au4H1w1lDblyjeryf38P5P1aIwwPadMPkpGRmMPvoiA,48152
47
47
  aws_cdk/aws_cloud9/__init__.py,sha256=Ack9F6EHoBmOL0ahQit2jjsFQNzPhcxwFkffcCihWvk,41745
48
48
  aws_cdk/aws_cloudformation/__init__.py,sha256=BTI4-PasRGj-zY5I2c0MNRbyFSrUAt0NBTBAjiglVek,388064
49
49
  aws_cdk/aws_cloudfront/__init__.py,sha256=knJpq5taW9lX_zOy-M2wnzORjC7f92bugbBaxXb-jRk,1468957
50
- aws_cdk/aws_cloudfront/experimental/__init__.py,sha256=SjBSYUMOD-KfdX6yoO8dTnsxzKjI_8goll_SLbwgQDc,128624
50
+ aws_cdk/aws_cloudfront/experimental/__init__.py,sha256=9-lSPQosg42AL8XdgXHlj6L_MA7i3WC6xa_-wEUxbuc,131776
51
51
  aws_cdk/aws_cloudfront_origins/__init__.py,sha256=rogwYnShid3NXRVMAFOOUd3rn0ijmfMBmtH7XxFwokk,110506
52
52
  aws_cdk/aws_cloudtrail/__init__.py,sha256=1_U9dpu4QCl80nO2UI5QEq2ncJRhA2USrMAiWmXgnHo,372797
53
53
  aws_cdk/aws_cloudwatch/__init__.py,sha256=-Mb_1kbOS9BbqEpRTPOhnQwTO6elmHEKQMnYR-2HO28,801426
54
54
  aws_cdk/aws_cloudwatch_actions/__init__.py,sha256=Hshm_6q-z_pL4WN0dHTtjBrwPEZk0hwbXOCDmBCA3NI,21401
55
55
  aws_cdk/aws_codeartifact/__init__.py,sha256=ru7FMAJuhupHB9u_ADOpz7Xrc3k764siDbsEHWQgoNE,86269
56
- aws_cdk/aws_codebuild/__init__.py,sha256=qcERp2pqBwNdGsBjmDVeA54iOaJEy_HPcomZlX7cQE0,948053
56
+ aws_cdk/aws_codebuild/__init__.py,sha256=bAG8uz_0ty3OGym8hfrdzV8FsKPHJ3pWRcWMome6aIM,959385
57
57
  aws_cdk/aws_codecommit/__init__.py,sha256=YMP6hpS-5UzWbli4lREjAuIR0R4BSxoZ0XC8BcmBa9Q,227560
58
58
  aws_cdk/aws_codeconnections/__init__.py,sha256=-Qa_vRUXNAKuogK93V1fppm4BCkyihe9xKZ6R3ipqSU,18843
59
59
  aws_cdk/aws_codedeploy/__init__.py,sha256=84s6arG9Tgdwg_seoRDYXsVgAC1j8izWwBb5YMZpFHw,589684
@@ -86,12 +86,12 @@ aws_cdk/aws_dlm/__init__.py,sha256=NZXXet2nbyH8IdrbaP8LXRNpn6JTU-_3cNxlapolg7U,2
86
86
  aws_cdk/aws_dms/__init__.py,sha256=9Klg3wBEbPTDu--DEzf5CSFLJB3z8amc-0dwVw62F_g,889981
87
87
  aws_cdk/aws_docdb/__init__.py,sha256=rXK9af-SJCEXyxoQcZuRgVuNjVavJUPWaDMbeaHvo4U,312937
88
88
  aws_cdk/aws_docdbelastic/__init__.py,sha256=eJc7qeGj4xI8KN4Wz4hopMtyh91WtFQH-bBd0hJ4zL0,45245
89
- aws_cdk/aws_dynamodb/__init__.py,sha256=zj-QPucQP1g0LzHGBNKEj_rLEGM22v1lmiJJWyPCVkg,901452
90
- aws_cdk/aws_ec2/__init__.py,sha256=9ljE3wXIqH9yXwdhjFS5JkPlXxqcirSD_3nancHQ2_E,5531293
89
+ aws_cdk/aws_dynamodb/__init__.py,sha256=aGyrVS-Y53RusrzmvPLDWhe2w0anMvHcN8cbGIL9t4A,916486
90
+ aws_cdk/aws_ec2/__init__.py,sha256=g0cmEErS1Y727ILxIjVOxBnU4-ZDr_Jbtx86Mxj5QiQ,5533890
91
91
  aws_cdk/aws_ecr/__init__.py,sha256=WIGenbk3SaZzFflpkhtPhhogYPs3r3cRP_4BmjTTvck,294351
92
92
  aws_cdk/aws_ecr_assets/__init__.py,sha256=lBHqptQLU_1G46pL9uzAUMzZX_2uJV66NOvPmFKVSNA,83474
93
93
  aws_cdk/aws_ecs/__init__.py,sha256=EQ1nbqzjiR5G0g8u6wsfCWjfntHYDPvPL-2ZykopiPE,2574998
94
- aws_cdk/aws_ecs_patterns/__init__.py,sha256=D3jqKVEWZIm35sgx1TIjNiWCiFy8fGqo6jX9qXWjQtY,1016121
94
+ aws_cdk/aws_ecs_patterns/__init__.py,sha256=anWi7zIYKxDOJbcEwKIBMIFYaY1ILs7-IzH97WaSkc4,1019660
95
95
  aws_cdk/aws_efs/__init__.py,sha256=oX-cxR29KIN6P2QmLhA6Ofj3IFLT8YcV4JguI9aHfCA,275338
96
96
  aws_cdk/aws_eks/__init__.py,sha256=-gU2_I46jQ8JGiYq33BrjmKAmcKJdA1S1JzaA6YPUIA,1046227
97
97
  aws_cdk/aws_elasticache/__init__.py,sha256=tIuJ9wnhota_Ibu7S1XqP359PYQrm8HLpZsxMWLHoak,516761
@@ -114,11 +114,11 @@ aws_cdk/aws_fis/__init__.py,sha256=dAx11dg8YenLX7S50WVhBul3Dn3UC2Ka_GGDAbR22tA,9
114
114
  aws_cdk/aws_fms/__init__.py,sha256=i0uQkMb_FyuDAByYNkPOQ6D8QMbA9llx7U3x3E6iq5c,213498
115
115
  aws_cdk/aws_forecast/__init__.py,sha256=x4EI6hiGmuSufUAlIhqg7S-UDh57UopLFX9oCCrdBas,60561
116
116
  aws_cdk/aws_frauddetector/__init__.py,sha256=gW8wBcGAlLoZJ0SoVyxlfnAEKKvhNKinD5OEA3VTeZY,259960
117
- aws_cdk/aws_fsx/__init__.py,sha256=rZn6w6suyrRLkvvCdF5RL9d8-f9aI7OqfZPNkfDj0fE,544934
117
+ aws_cdk/aws_fsx/__init__.py,sha256=8ntdT1C87RLaEFfVHLenf-T3LK7bOmWj08OJd9wKMo4,544934
118
118
  aws_cdk/aws_gamelift/__init__.py,sha256=mAjvd2RJ_cfSwTYzv_GVjw4VUj9z795d-I4r2IPzCDQ,590604
119
119
  aws_cdk/aws_globalaccelerator/__init__.py,sha256=xptrq2x0u8I3sukZLv6-zHStwqd-IxGDTNnXmAWPUfs,230449
120
120
  aws_cdk/aws_globalaccelerator_endpoints/__init__.py,sha256=xgY7B8PRdnY7OPU2NsILj5fNDh4nqgFQNZNM27fb_IQ,23901
121
- aws_cdk/aws_glue/__init__.py,sha256=TwJSSTcZSbbzmwRJPFNidSxdv6QuqOO5dTzJHzLSfL0,900073
121
+ aws_cdk/aws_glue/__init__.py,sha256=0Lo4Flt8rfx0pvvP4eFgNdNHAP4xu9MpoGv-9yvvQJ8,902059
122
122
  aws_cdk/aws_grafana/__init__.py,sha256=-kb1Xx2cApygFtKKNMOEdtXftDzcVPfhlzAZKEJMq9I,102602
123
123
  aws_cdk/aws_greengrass/__init__.py,sha256=H6yYidcKslVGsH9uTkTKniF3YRJo_p1Akf36F1Kj6WE,659666
124
124
  aws_cdk/aws_greengrassv2/__init__.py,sha256=jokEiJPIpQtQm5JeyaFCBNLxisl4z6EwOXs4LS_Icno,212528
@@ -155,10 +155,10 @@ aws_cdk/aws_kinesisfirehose/__init__.py,sha256=vMoJ1e4UNa5wfaIrPwAqP_LowQq3l8IAg
155
155
  aws_cdk/aws_kinesisvideo/__init__.py,sha256=eRd3JVYo6EVDeeuZzuxI45TameiVP2_wQIXVbh8Tf2g,37396
156
156
  aws_cdk/aws_kms/__init__.py,sha256=gQqWKkRouHbrJYA3uIu_XOV8g-DJqcmmyzhAq-q--TE,231577
157
157
  aws_cdk/aws_lakeformation/__init__.py,sha256=pXfJZyGtbIBaLw-iWKO6HlVZSUBTbhKVCvwhWUqr_os,333602
158
- aws_cdk/aws_lambda/__init__.py,sha256=AN_-55iDO2alLboCowuyPpA4NH9ODnVxs_LiOwQxMpg,1587471
158
+ aws_cdk/aws_lambda/__init__.py,sha256=1P3fiC1a15Vhe8EhtdEmMei_ROCD6G-GGAGEDJGB66g,1620275
159
159
  aws_cdk/aws_lambda_destinations/__init__.py,sha256=wcE0FBIh1UkmT6TI5DuXjq75hkEorupGDxPd1-bHWCE,20442
160
160
  aws_cdk/aws_lambda_event_sources/__init__.py,sha256=Y5mKB6oBlL72vFpOe6aLCRsui2_HvtSAA9JWIM8RvuI,199387
161
- aws_cdk/aws_lambda_nodejs/__init__.py,sha256=0-Q1I9MnW64TMaVrnJ6dOlUhWTXhOZBI5DOSqaqu3mQ,164335
161
+ aws_cdk/aws_lambda_nodejs/__init__.py,sha256=5tC3DpIIGEo-fU_BgHfODkV9o3TAJ-9wSROw73tHJJ8,172516
162
162
  aws_cdk/aws_lex/__init__.py,sha256=eXWS-93VaEn1_dUgW-tFCfDbEZz1eDogbIW_2OR9lk0,699340
163
163
  aws_cdk/aws_licensemanager/__init__.py,sha256=ru0M6lmrh1BSgw-7L-kkEeo-jYyXhnVvfvvLGrH0k04,86368
164
164
  aws_cdk/aws_lightsail/__init__.py,sha256=tKa5jEnInwDiuGq3XmLqDfWByvwVi-UfSXgHayQjrTU,536242
@@ -173,7 +173,7 @@ aws_cdk/aws_macie/__init__.py,sha256=YGRAgc0_64n_S0vaO9sDsZwc3wbdEsPIY1tR2PC82a0
173
173
  aws_cdk/aws_managedblockchain/__init__.py,sha256=L6hKDtOh7uOSeAFz0v8v-sla5lNerXatagdmhdjdy7s,99538
174
174
  aws_cdk/aws_mediaconnect/__init__.py,sha256=CZ7-h89zyYgtpDzw646aGe2GkEbVISyOIr9vIvHKTLI,497667
175
175
  aws_cdk/aws_mediaconvert/__init__.py,sha256=Ofyhu_LHgB7pyOJqUElGyp2oirHHmME4YkrP7n8vusc,85477
176
- aws_cdk/aws_medialive/__init__.py,sha256=va3hXKoBpUjA0UxGZd1UzgEw5C0NtVg7e2ElPOkd1l0,1612738
176
+ aws_cdk/aws_medialive/__init__.py,sha256=UD7ueqYwYPodt9nUE17uz4-8qgeP9MGCXgAzW3iPYtc,1613873
177
177
  aws_cdk/aws_mediapackage/__init__.py,sha256=TWkj-JyVpYX1NLMrCQH7CN1FocIOaOBN41TuPPSqt1s,441479
178
178
  aws_cdk/aws_mediapackagev2/__init__.py,sha256=BJzTifYjr47POGsLN2i3p_GI67H6MLXqj7cRo_VomXk,177958
179
179
  aws_cdk/aws_mediastore/__init__.py,sha256=ZyXQZBbBMsdYpHvnNoPrVc-e3IT9agxKI487c2o6X8M,55752
@@ -206,7 +206,7 @@ aws_cdk/aws_qbusiness/__init__.py,sha256=Ka-wFBBqiFncJayjIpYSwAQ65LKgUUuEakFxC0W
206
206
  aws_cdk/aws_qldb/__init__.py,sha256=k0v3F43pVRo5y79oLlCjSiw-jg_5GhaAVYWoKpEr4Vo,62400
207
207
  aws_cdk/aws_quicksight/__init__.py,sha256=RSxite0Afia5p9gdWg18Zi9ZYP8a31qZJZoUACz5eMk,14058625
208
208
  aws_cdk/aws_ram/__init__.py,sha256=hQ1UdFI0v6s0ipdeuqGRhqCNktzB1z8vRkiDqXDmwvc,50223
209
- aws_cdk/aws_rds/__init__.py,sha256=d6SWTS2f64PtZeQsaY4wjQOzpNK1LUygUPxiKsIwzWo,2678239
209
+ aws_cdk/aws_rds/__init__.py,sha256=ojTOqrFcMBnbn9SD4CvrltFPSjvxMvIH-yXXOyX-ctQ,2678698
210
210
  aws_cdk/aws_redshift/__init__.py,sha256=v4_HeL-oQVBM_Sh50m1mps5C7o23icXGBBuTb-idb_o,373524
211
211
  aws_cdk/aws_redshiftserverless/__init__.py,sha256=0N5yPH9W4eP1uSIHekz_WFH1wAFLb1h3qfxqMkL3kgk,159480
212
212
  aws_cdk/aws_refactorspaces/__init__.py,sha256=MB29dWJ8rWEkkaVrgWR2lRQzFWZ6hPb1TJ3AtGvB6iw,121468
@@ -224,9 +224,9 @@ aws_cdk/aws_route53recoverycontrol/__init__.py,sha256=b-139Z2zAAADl4aupHD6fBhXtN
224
224
  aws_cdk/aws_route53recoveryreadiness/__init__.py,sha256=nQxMeN6S4YG0-jnRe78Lkt-Kz5fboRtMi1A9imRj0BE,93750
225
225
  aws_cdk/aws_route53resolver/__init__.py,sha256=6ZlntAii0INUsyAaluEc7LILaEiikUAYr8yFkO6oC38,234729
226
226
  aws_cdk/aws_rum/__init__.py,sha256=psHGyfEzrI-_mE88dLf_RU2vEyCEUtT9XAq0Y2GUDeY,73174
227
- aws_cdk/aws_s3/__init__.py,sha256=ELEuLijTQ9xlpjFUYxTiDpYlI-AcjWGsQ0WB139eu0c,1190622
227
+ aws_cdk/aws_s3/__init__.py,sha256=QmPYpP6NBYgf6w-GBei4SI20l7mYmil-s2vNLuy99gA,1191353
228
228
  aws_cdk/aws_s3_assets/__init__.py,sha256=RxiLxUNVg2umK3JTTRDBI97YhL1y9Xz2txju3Zb8Yn4,45859
229
- aws_cdk/aws_s3_deployment/__init__.py,sha256=4yqE94qtO-F_t3HIrQxX_AdMQ_eHTlsZ18NdmFAq2xQ,117005
229
+ aws_cdk/aws_s3_deployment/__init__.py,sha256=aRMykKQV5L1PoUzhVZxvXXwyAs_rYxz9YfKYRJJN7eo,117218
230
230
  aws_cdk/aws_s3_notifications/__init__.py,sha256=BYKNyCq0BboVp34ofkhc5Ku1Jzpf3vN_ID7eb-ZDsO0,9083
231
231
  aws_cdk/aws_s3express/__init__.py,sha256=_y6TfYPnSTe0ABswUUZgkEZJuhFYVDWLlp22rK_Su_g,32245
232
232
  aws_cdk/aws_s3objectlambda/__init__.py,sha256=PD0vOECtbTR0ysl18uqs0I5sBwF3pQRxenbkW6TgsCI,67575
@@ -253,8 +253,8 @@ aws_cdk/aws_ssm/__init__.py,sha256=GK73hGkALvg0AV5SH5mrwPnh93w8eeqDfP0_qNR2Bq8,5
253
253
  aws_cdk/aws_ssmcontacts/__init__.py,sha256=OB0oJhXbRQzNb5FYFeFM_Jt4VOA25LBlsT9ffQcIAbc,136665
254
254
  aws_cdk/aws_ssmincidents/__init__.py,sha256=aD5m9b9FnQW8J0BbRz3N6fKOLt0w7JD_TYnULHUy-xo,112134
255
255
  aws_cdk/aws_sso/__init__.py,sha256=Ux8AIf9fzn82qlgrER1kGi0mHmnl6H-rFQwWfT1G5w8,154177
256
- aws_cdk/aws_stepfunctions/__init__.py,sha256=bKCb3u1xELr5o_66kBFQA_01OBDL2biGmLbkXaGjrQc,873086
257
- aws_cdk/aws_stepfunctions_tasks/__init__.py,sha256=ahoz7IjYnwk5qRMpanObaQ99ox-SK1dgH1aeB8zQ3h0,1864667
256
+ aws_cdk/aws_stepfunctions/__init__.py,sha256=1WWM6iCNofUX5Uj_nlO5gaD2to7ug7LkrrdO1daO-GQ,875617
257
+ aws_cdk/aws_stepfunctions_tasks/__init__.py,sha256=vQzatxxpCkwKDMnwbYI0-_qA5IT5LYG7xVqfsoasxOs,1902421
258
258
  aws_cdk/aws_supportapp/__init__.py,sha256=rfecThA_tsuYGkYyB0YPpujfZzpIUgYKyAOtgh6UAxA,48022
259
259
  aws_cdk/aws_synthetics/__init__.py,sha256=5xu9jEMjK0RDgQe2BDuZszVGjF50p_m0a2Y2UlIzTy4,237398
260
260
  aws_cdk/aws_systemsmanagersap/__init__.py,sha256=ZOn0Gl43HvEuxSyhBBBw3gtTBnRqhTGggdJjaG6mByc,29487
@@ -280,10 +280,10 @@ aws_cdk/lambda_layer_kubectl/__init__.py,sha256=XjN5_VlJJK5VNOc8ldgZ6ry2fbz_rmr0
280
280
  aws_cdk/lambda_layer_node_proxy_agent/__init__.py,sha256=L2O5Aen4xESrAMU07go5NB0TGemlP5RqT9U3-w9MMLk,2337
281
281
  aws_cdk/pipelines/__init__.py,sha256=fnbq8c0wOp2MkA20blCIsyrhrYNgZB5OjmsuH4e9BkQ,398736
282
282
  aws_cdk/region_info/__init__.py,sha256=N-HdesRpLDoe1UOQOzVX7bea6z2jZijx4SybmdgdsI4,37857
283
- aws_cdk/triggers/__init__.py,sha256=w78wLbTJPhCIx2D2VWnle5AXqs5FRVbts9Uoi-7q_yU,115432
284
- aws_cdk_lib-2.143.1.dist-info/LICENSE,sha256=kEDF86xJUQh1E9M7UPKKbHepBEdFxIUyoGfTwQB7zKg,11391
285
- aws_cdk_lib-2.143.1.dist-info/METADATA,sha256=RRm8-IwL_pXL11tnesLUjyHLaEwXOMEzVREmuc2GzcU,59896
286
- aws_cdk_lib-2.143.1.dist-info/NOTICE,sha256=Irn92Qln1GDSjTx0CQqiOXM94Z9jgbvnq8rfk50NQ-4,42502
287
- aws_cdk_lib-2.143.1.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
288
- aws_cdk_lib-2.143.1.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
289
- aws_cdk_lib-2.143.1.dist-info/RECORD,,
283
+ aws_cdk/triggers/__init__.py,sha256=DQ5T4r-s8o6e2Z0AXmVPdu7eFCIzi0JYr57u6PTjf6I,118584
284
+ aws_cdk_lib-2.144.0.dist-info/LICENSE,sha256=kEDF86xJUQh1E9M7UPKKbHepBEdFxIUyoGfTwQB7zKg,11391
285
+ aws_cdk_lib-2.144.0.dist-info/METADATA,sha256=mEg_NJD9WxD0IyZ3l0tRHy7J7BrWCItW_z8KZmoHorE,59896
286
+ aws_cdk_lib-2.144.0.dist-info/NOTICE,sha256=Irn92Qln1GDSjTx0CQqiOXM94Z9jgbvnq8rfk50NQ-4,42502
287
+ aws_cdk_lib-2.144.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
288
+ aws_cdk_lib-2.144.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
289
+ aws_cdk_lib-2.144.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.3)
2
+ Generator: bdist_wheel (0.43.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5