aws-cdk-lib 2.152.0__py3-none-any.whl → 2.153.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.
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.152.0.jsii.tgz → aws-cdk-lib@2.153.0.jsii.tgz} +0 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +23 -0
- aws_cdk/aws_lambda/__init__.py +262 -110
- aws_cdk/aws_lambda_nodejs/__init__.py +23 -0
- aws_cdk/triggers/__init__.py +23 -0
- {aws_cdk_lib-2.152.0.dist-info → aws_cdk_lib-2.153.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.152.0.dist-info → aws_cdk_lib-2.153.0.dist-info}/RECORD +12 -12
- {aws_cdk_lib-2.152.0.dist-info → aws_cdk_lib-2.153.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.152.0.dist-info → aws_cdk_lib-2.153.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.152.0.dist-info → aws_cdk_lib-2.153.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.152.0.dist-info → aws_cdk_lib-2.153.0.dist-info}/top_level.txt +0 -0
|
@@ -502,6 +502,7 @@ from ..aws_lambda import (
|
|
|
502
502
|
LogRetentionRetryOptions as _LogRetentionRetryOptions_ad797a7a,
|
|
503
503
|
LoggingFormat as _LoggingFormat_30be8e01,
|
|
504
504
|
ParamsAndSecretsLayerVersion as _ParamsAndSecretsLayerVersion_dce97f06,
|
|
505
|
+
RecursiveLoop as _RecursiveLoop_fc293827,
|
|
505
506
|
Runtime as _Runtime_b4eaa844,
|
|
506
507
|
RuntimeManagementMode as _RuntimeManagementMode_688c173b,
|
|
507
508
|
SnapStartConf as _SnapStartConf_2ffaa769,
|
|
@@ -1586,6 +1587,7 @@ class NodejsFunction(
|
|
|
1586
1587
|
params_and_secrets: typing.Optional[_ParamsAndSecretsLayerVersion_dce97f06] = None,
|
|
1587
1588
|
profiling: typing.Optional[builtins.bool] = None,
|
|
1588
1589
|
profiling_group: typing.Optional[_IProfilingGroup_0bba72c4] = None,
|
|
1590
|
+
recursive_loop: typing.Optional[_RecursiveLoop_fc293827] = None,
|
|
1589
1591
|
reserved_concurrent_executions: typing.Optional[jsii.Number] = None,
|
|
1590
1592
|
role: typing.Optional[_IRole_235f5d8e] = None,
|
|
1591
1593
|
runtime_management_mode: typing.Optional[_RuntimeManagementMode_688c173b] = None,
|
|
@@ -1645,6 +1647,7 @@ class NodejsFunction(
|
|
|
1645
1647
|
:param params_and_secrets: Specify the configuration of Parameters and Secrets Extension. Default: - No Parameters and Secrets Extension
|
|
1646
1648
|
:param profiling: Enable profiling. Default: - No profiling.
|
|
1647
1649
|
:param profiling_group: Profiling Group. Default: - A new profiling group will be created if ``profiling`` is set.
|
|
1650
|
+
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended recusrive loops. Default: RecursiveLoop.Terminate
|
|
1648
1651
|
:param reserved_concurrent_executions: The maximum of concurrent executions you want to reserve for the function. Default: - No specific limit - account limit.
|
|
1649
1652
|
:param role: Lambda execution role. This is the role that will be assumed by the function upon execution. It controls the permissions that the function will have. The Role must be assumable by the 'lambda.amazonaws.com' service principal. The default Role automatically has permissions granted for Lambda execution. If you provide a Role, you must add the relevant AWS managed policies yourself. The relevant managed policies are "service-role/AWSLambdaBasicExecutionRole" and "service-role/AWSLambdaVPCAccessExecutionRole". Default: - A unique role will be generated for this lambda function. Both supplied and generated roles can always be changed by calling ``addToRolePolicy``.
|
|
1650
1653
|
:param runtime_management_mode: Sets the runtime management configuration for a function's version. Default: Auto
|
|
@@ -1706,6 +1709,7 @@ class NodejsFunction(
|
|
|
1706
1709
|
params_and_secrets=params_and_secrets,
|
|
1707
1710
|
profiling=profiling,
|
|
1708
1711
|
profiling_group=profiling_group,
|
|
1712
|
+
recursive_loop=recursive_loop,
|
|
1709
1713
|
reserved_concurrent_executions=reserved_concurrent_executions,
|
|
1710
1714
|
role=role,
|
|
1711
1715
|
runtime_management_mode=runtime_management_mode,
|
|
@@ -1766,6 +1770,7 @@ class NodejsFunction(
|
|
|
1766
1770
|
"params_and_secrets": "paramsAndSecrets",
|
|
1767
1771
|
"profiling": "profiling",
|
|
1768
1772
|
"profiling_group": "profilingGroup",
|
|
1773
|
+
"recursive_loop": "recursiveLoop",
|
|
1769
1774
|
"reserved_concurrent_executions": "reservedConcurrentExecutions",
|
|
1770
1775
|
"role": "role",
|
|
1771
1776
|
"runtime_management_mode": "runtimeManagementMode",
|
|
@@ -1827,6 +1832,7 @@ class NodejsFunctionProps(_FunctionOptions_328f4d39):
|
|
|
1827
1832
|
params_and_secrets: typing.Optional[_ParamsAndSecretsLayerVersion_dce97f06] = None,
|
|
1828
1833
|
profiling: typing.Optional[builtins.bool] = None,
|
|
1829
1834
|
profiling_group: typing.Optional[_IProfilingGroup_0bba72c4] = None,
|
|
1835
|
+
recursive_loop: typing.Optional[_RecursiveLoop_fc293827] = None,
|
|
1830
1836
|
reserved_concurrent_executions: typing.Optional[jsii.Number] = None,
|
|
1831
1837
|
role: typing.Optional[_IRole_235f5d8e] = None,
|
|
1832
1838
|
runtime_management_mode: typing.Optional[_RuntimeManagementMode_688c173b] = None,
|
|
@@ -1885,6 +1891,7 @@ class NodejsFunctionProps(_FunctionOptions_328f4d39):
|
|
|
1885
1891
|
:param params_and_secrets: Specify the configuration of Parameters and Secrets Extension. Default: - No Parameters and Secrets Extension
|
|
1886
1892
|
:param profiling: Enable profiling. Default: - No profiling.
|
|
1887
1893
|
:param profiling_group: Profiling Group. Default: - A new profiling group will be created if ``profiling`` is set.
|
|
1894
|
+
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended recusrive loops. Default: RecursiveLoop.Terminate
|
|
1888
1895
|
:param reserved_concurrent_executions: The maximum of concurrent executions you want to reserve for the function. Default: - No specific limit - account limit.
|
|
1889
1896
|
:param role: Lambda execution role. This is the role that will be assumed by the function upon execution. It controls the permissions that the function will have. The Role must be assumable by the 'lambda.amazonaws.com' service principal. The default Role automatically has permissions granted for Lambda execution. If you provide a Role, you must add the relevant AWS managed policies yourself. The relevant managed policies are "service-role/AWSLambdaBasicExecutionRole" and "service-role/AWSLambdaVPCAccessExecutionRole". Default: - A unique role will be generated for this lambda function. Both supplied and generated roles can always be changed by calling ``addToRolePolicy``.
|
|
1890
1897
|
:param runtime_management_mode: Sets the runtime management configuration for a function's version. Default: Auto
|
|
@@ -1967,6 +1974,7 @@ class NodejsFunctionProps(_FunctionOptions_328f4d39):
|
|
|
1967
1974
|
check_type(argname="argument params_and_secrets", value=params_and_secrets, expected_type=type_hints["params_and_secrets"])
|
|
1968
1975
|
check_type(argname="argument profiling", value=profiling, expected_type=type_hints["profiling"])
|
|
1969
1976
|
check_type(argname="argument profiling_group", value=profiling_group, expected_type=type_hints["profiling_group"])
|
|
1977
|
+
check_type(argname="argument recursive_loop", value=recursive_loop, expected_type=type_hints["recursive_loop"])
|
|
1970
1978
|
check_type(argname="argument reserved_concurrent_executions", value=reserved_concurrent_executions, expected_type=type_hints["reserved_concurrent_executions"])
|
|
1971
1979
|
check_type(argname="argument role", value=role, expected_type=type_hints["role"])
|
|
1972
1980
|
check_type(argname="argument runtime_management_mode", value=runtime_management_mode, expected_type=type_hints["runtime_management_mode"])
|
|
@@ -2059,6 +2067,8 @@ class NodejsFunctionProps(_FunctionOptions_328f4d39):
|
|
|
2059
2067
|
self._values["profiling"] = profiling
|
|
2060
2068
|
if profiling_group is not None:
|
|
2061
2069
|
self._values["profiling_group"] = profiling_group
|
|
2070
|
+
if recursive_loop is not None:
|
|
2071
|
+
self._values["recursive_loop"] = recursive_loop
|
|
2062
2072
|
if reserved_concurrent_executions is not None:
|
|
2063
2073
|
self._values["reserved_concurrent_executions"] = reserved_concurrent_executions
|
|
2064
2074
|
if role is not None:
|
|
@@ -2529,6 +2539,17 @@ class NodejsFunctionProps(_FunctionOptions_328f4d39):
|
|
|
2529
2539
|
result = self._values.get("profiling_group")
|
|
2530
2540
|
return typing.cast(typing.Optional[_IProfilingGroup_0bba72c4], result)
|
|
2531
2541
|
|
|
2542
|
+
@builtins.property
|
|
2543
|
+
def recursive_loop(self) -> typing.Optional[_RecursiveLoop_fc293827]:
|
|
2544
|
+
'''Sets the Recursive Loop Protection for Lambda Function.
|
|
2545
|
+
|
|
2546
|
+
It lets Lambda detect and terminate unintended recusrive loops.
|
|
2547
|
+
|
|
2548
|
+
:default: RecursiveLoop.Terminate
|
|
2549
|
+
'''
|
|
2550
|
+
result = self._values.get("recursive_loop")
|
|
2551
|
+
return typing.cast(typing.Optional[_RecursiveLoop_fc293827], result)
|
|
2552
|
+
|
|
2532
2553
|
@builtins.property
|
|
2533
2554
|
def reserved_concurrent_executions(self) -> typing.Optional[jsii.Number]:
|
|
2534
2555
|
'''The maximum of concurrent executions you want to reserve for the function.
|
|
@@ -3016,6 +3037,7 @@ def _typecheckingstub__ece177829b26ef102d4080d730f168e29d7d310d1518738839cd3fc82
|
|
|
3016
3037
|
params_and_secrets: typing.Optional[_ParamsAndSecretsLayerVersion_dce97f06] = None,
|
|
3017
3038
|
profiling: typing.Optional[builtins.bool] = None,
|
|
3018
3039
|
profiling_group: typing.Optional[_IProfilingGroup_0bba72c4] = None,
|
|
3040
|
+
recursive_loop: typing.Optional[_RecursiveLoop_fc293827] = None,
|
|
3019
3041
|
reserved_concurrent_executions: typing.Optional[jsii.Number] = None,
|
|
3020
3042
|
role: typing.Optional[_IRole_235f5d8e] = None,
|
|
3021
3043
|
runtime_management_mode: typing.Optional[_RuntimeManagementMode_688c173b] = None,
|
|
@@ -3073,6 +3095,7 @@ def _typecheckingstub__2da45b394f0332be0f6d6b7468d9fb54961953d56265da69955d36ffa
|
|
|
3073
3095
|
params_and_secrets: typing.Optional[_ParamsAndSecretsLayerVersion_dce97f06] = None,
|
|
3074
3096
|
profiling: typing.Optional[builtins.bool] = None,
|
|
3075
3097
|
profiling_group: typing.Optional[_IProfilingGroup_0bba72c4] = None,
|
|
3098
|
+
recursive_loop: typing.Optional[_RecursiveLoop_fc293827] = None,
|
|
3076
3099
|
reserved_concurrent_executions: typing.Optional[jsii.Number] = None,
|
|
3077
3100
|
role: typing.Optional[_IRole_235f5d8e] = None,
|
|
3078
3101
|
runtime_management_mode: typing.Optional[_RuntimeManagementMode_688c173b] = None,
|
aws_cdk/triggers/__init__.py
CHANGED
|
@@ -154,6 +154,7 @@ from ..aws_lambda import (
|
|
|
154
154
|
LogRetentionRetryOptions as _LogRetentionRetryOptions_ad797a7a,
|
|
155
155
|
LoggingFormat as _LoggingFormat_30be8e01,
|
|
156
156
|
ParamsAndSecretsLayerVersion as _ParamsAndSecretsLayerVersion_dce97f06,
|
|
157
|
+
RecursiveLoop as _RecursiveLoop_fc293827,
|
|
157
158
|
Runtime as _Runtime_b4eaa844,
|
|
158
159
|
RuntimeManagementMode as _RuntimeManagementMode_688c173b,
|
|
159
160
|
SnapStartConf as _SnapStartConf_2ffaa769,
|
|
@@ -435,6 +436,7 @@ class TriggerFunction(
|
|
|
435
436
|
params_and_secrets: typing.Optional[_ParamsAndSecretsLayerVersion_dce97f06] = None,
|
|
436
437
|
profiling: typing.Optional[builtins.bool] = None,
|
|
437
438
|
profiling_group: typing.Optional[_IProfilingGroup_0bba72c4] = None,
|
|
439
|
+
recursive_loop: typing.Optional[_RecursiveLoop_fc293827] = None,
|
|
438
440
|
reserved_concurrent_executions: typing.Optional[jsii.Number] = None,
|
|
439
441
|
role: typing.Optional[_IRole_235f5d8e] = None,
|
|
440
442
|
runtime_management_mode: typing.Optional[_RuntimeManagementMode_688c173b] = None,
|
|
@@ -492,6 +494,7 @@ class TriggerFunction(
|
|
|
492
494
|
:param params_and_secrets: Specify the configuration of Parameters and Secrets Extension. Default: - No Parameters and Secrets Extension
|
|
493
495
|
:param profiling: Enable profiling. Default: - No profiling.
|
|
494
496
|
:param profiling_group: Profiling Group. Default: - A new profiling group will be created if ``profiling`` is set.
|
|
497
|
+
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended recusrive loops. Default: RecursiveLoop.Terminate
|
|
495
498
|
:param reserved_concurrent_executions: The maximum of concurrent executions you want to reserve for the function. Default: - No specific limit - account limit.
|
|
496
499
|
:param role: Lambda execution role. This is the role that will be assumed by the function upon execution. It controls the permissions that the function will have. The Role must be assumable by the 'lambda.amazonaws.com' service principal. The default Role automatically has permissions granted for Lambda execution. If you provide a Role, you must add the relevant AWS managed policies yourself. The relevant managed policies are "service-role/AWSLambdaBasicExecutionRole" and "service-role/AWSLambdaVPCAccessExecutionRole". Default: - A unique role will be generated for this lambda function. Both supplied and generated roles can always be changed by calling ``addToRolePolicy``.
|
|
497
500
|
:param runtime_management_mode: Sets the runtime management configuration for a function's version. Default: Auto
|
|
@@ -551,6 +554,7 @@ class TriggerFunction(
|
|
|
551
554
|
params_and_secrets=params_and_secrets,
|
|
552
555
|
profiling=profiling,
|
|
553
556
|
profiling_group=profiling_group,
|
|
557
|
+
recursive_loop=recursive_loop,
|
|
554
558
|
reserved_concurrent_executions=reserved_concurrent_executions,
|
|
555
559
|
role=role,
|
|
556
560
|
runtime_management_mode=runtime_management_mode,
|
|
@@ -916,6 +920,7 @@ class TriggerProps(TriggerOptions):
|
|
|
916
920
|
"params_and_secrets": "paramsAndSecrets",
|
|
917
921
|
"profiling": "profiling",
|
|
918
922
|
"profiling_group": "profilingGroup",
|
|
923
|
+
"recursive_loop": "recursiveLoop",
|
|
919
924
|
"reserved_concurrent_executions": "reservedConcurrentExecutions",
|
|
920
925
|
"role": "role",
|
|
921
926
|
"runtime_management_mode": "runtimeManagementMode",
|
|
@@ -975,6 +980,7 @@ class TriggerFunctionProps(_FunctionProps_a308e854, TriggerOptions):
|
|
|
975
980
|
params_and_secrets: typing.Optional[_ParamsAndSecretsLayerVersion_dce97f06] = None,
|
|
976
981
|
profiling: typing.Optional[builtins.bool] = None,
|
|
977
982
|
profiling_group: typing.Optional[_IProfilingGroup_0bba72c4] = None,
|
|
983
|
+
recursive_loop: typing.Optional[_RecursiveLoop_fc293827] = None,
|
|
978
984
|
reserved_concurrent_executions: typing.Optional[jsii.Number] = None,
|
|
979
985
|
role: typing.Optional[_IRole_235f5d8e] = None,
|
|
980
986
|
runtime_management_mode: typing.Optional[_RuntimeManagementMode_688c173b] = None,
|
|
@@ -1031,6 +1037,7 @@ class TriggerFunctionProps(_FunctionProps_a308e854, TriggerOptions):
|
|
|
1031
1037
|
:param params_and_secrets: Specify the configuration of Parameters and Secrets Extension. Default: - No Parameters and Secrets Extension
|
|
1032
1038
|
:param profiling: Enable profiling. Default: - No profiling.
|
|
1033
1039
|
:param profiling_group: Profiling Group. Default: - A new profiling group will be created if ``profiling`` is set.
|
|
1040
|
+
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended recusrive loops. Default: RecursiveLoop.Terminate
|
|
1034
1041
|
:param reserved_concurrent_executions: The maximum of concurrent executions you want to reserve for the function. Default: - No specific limit - account limit.
|
|
1035
1042
|
:param role: Lambda execution role. This is the role that will be assumed by the function upon execution. It controls the permissions that the function will have. The Role must be assumable by the 'lambda.amazonaws.com' service principal. The default Role automatically has permissions granted for Lambda execution. If you provide a Role, you must add the relevant AWS managed policies yourself. The relevant managed policies are "service-role/AWSLambdaBasicExecutionRole" and "service-role/AWSLambdaVPCAccessExecutionRole". Default: - A unique role will be generated for this lambda function. Both supplied and generated roles can always be changed by calling ``addToRolePolicy``.
|
|
1036
1043
|
:param runtime_management_mode: Sets the runtime management configuration for a function's version. Default: Auto
|
|
@@ -1108,6 +1115,7 @@ class TriggerFunctionProps(_FunctionProps_a308e854, TriggerOptions):
|
|
|
1108
1115
|
check_type(argname="argument params_and_secrets", value=params_and_secrets, expected_type=type_hints["params_and_secrets"])
|
|
1109
1116
|
check_type(argname="argument profiling", value=profiling, expected_type=type_hints["profiling"])
|
|
1110
1117
|
check_type(argname="argument profiling_group", value=profiling_group, expected_type=type_hints["profiling_group"])
|
|
1118
|
+
check_type(argname="argument recursive_loop", value=recursive_loop, expected_type=type_hints["recursive_loop"])
|
|
1111
1119
|
check_type(argname="argument reserved_concurrent_executions", value=reserved_concurrent_executions, expected_type=type_hints["reserved_concurrent_executions"])
|
|
1112
1120
|
check_type(argname="argument role", value=role, expected_type=type_hints["role"])
|
|
1113
1121
|
check_type(argname="argument runtime_management_mode", value=runtime_management_mode, expected_type=type_hints["runtime_management_mode"])
|
|
@@ -1202,6 +1210,8 @@ class TriggerFunctionProps(_FunctionProps_a308e854, TriggerOptions):
|
|
|
1202
1210
|
self._values["profiling"] = profiling
|
|
1203
1211
|
if profiling_group is not None:
|
|
1204
1212
|
self._values["profiling_group"] = profiling_group
|
|
1213
|
+
if recursive_loop is not None:
|
|
1214
|
+
self._values["recursive_loop"] = recursive_loop
|
|
1205
1215
|
if reserved_concurrent_executions is not None:
|
|
1206
1216
|
self._values["reserved_concurrent_executions"] = reserved_concurrent_executions
|
|
1207
1217
|
if role is not None:
|
|
@@ -1662,6 +1672,17 @@ class TriggerFunctionProps(_FunctionProps_a308e854, TriggerOptions):
|
|
|
1662
1672
|
result = self._values.get("profiling_group")
|
|
1663
1673
|
return typing.cast(typing.Optional[_IProfilingGroup_0bba72c4], result)
|
|
1664
1674
|
|
|
1675
|
+
@builtins.property
|
|
1676
|
+
def recursive_loop(self) -> typing.Optional[_RecursiveLoop_fc293827]:
|
|
1677
|
+
'''Sets the Recursive Loop Protection for Lambda Function.
|
|
1678
|
+
|
|
1679
|
+
It lets Lambda detect and terminate unintended recusrive loops.
|
|
1680
|
+
|
|
1681
|
+
:default: RecursiveLoop.Terminate
|
|
1682
|
+
'''
|
|
1683
|
+
result = self._values.get("recursive_loop")
|
|
1684
|
+
return typing.cast(typing.Optional[_RecursiveLoop_fc293827], result)
|
|
1685
|
+
|
|
1665
1686
|
@builtins.property
|
|
1666
1687
|
def reserved_concurrent_executions(self) -> typing.Optional[jsii.Number]:
|
|
1667
1688
|
'''The maximum of concurrent executions you want to reserve for the function.
|
|
@@ -1992,6 +2013,7 @@ def _typecheckingstub__6f34c5ba084706d20d6ef37a7f59673b20ed3425ffc7035fc8ea888e9
|
|
|
1992
2013
|
params_and_secrets: typing.Optional[_ParamsAndSecretsLayerVersion_dce97f06] = None,
|
|
1993
2014
|
profiling: typing.Optional[builtins.bool] = None,
|
|
1994
2015
|
profiling_group: typing.Optional[_IProfilingGroup_0bba72c4] = None,
|
|
2016
|
+
recursive_loop: typing.Optional[_RecursiveLoop_fc293827] = None,
|
|
1995
2017
|
reserved_concurrent_executions: typing.Optional[jsii.Number] = None,
|
|
1996
2018
|
role: typing.Optional[_IRole_235f5d8e] = None,
|
|
1997
2019
|
runtime_management_mode: typing.Optional[_RuntimeManagementMode_688c173b] = None,
|
|
@@ -2082,6 +2104,7 @@ def _typecheckingstub__b2f4b009b0160d566d798bfa6d813ccc8440e1a9e0f75c99449184a2f
|
|
|
2082
2104
|
params_and_secrets: typing.Optional[_ParamsAndSecretsLayerVersion_dce97f06] = None,
|
|
2083
2105
|
profiling: typing.Optional[builtins.bool] = None,
|
|
2084
2106
|
profiling_group: typing.Optional[_IProfilingGroup_0bba72c4] = None,
|
|
2107
|
+
recursive_loop: typing.Optional[_RecursiveLoop_fc293827] = None,
|
|
2085
2108
|
reserved_concurrent_executions: typing.Optional[jsii.Number] = None,
|
|
2086
2109
|
role: typing.Optional[_IRole_235f5d8e] = None,
|
|
2087
2110
|
runtime_management_mode: typing.Optional[_RuntimeManagementMode_688c173b] = None,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
aws_cdk/__init__.py,sha256=1acMlr9qlGOP2apnjoufaxcaFDCZm3Bu22tF816n6jY,1789155
|
|
2
2
|
aws_cdk/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
aws_cdk/_jsii/__init__.py,sha256=
|
|
4
|
-
aws_cdk/_jsii/aws-cdk-lib@2.
|
|
3
|
+
aws_cdk/_jsii/__init__.py,sha256=rpZjQ9AKBRRg87XnPrv_PkqG-l-_cMPWS8GnZE-PrC4,571
|
|
4
|
+
aws_cdk/_jsii/aws-cdk-lib@2.153.0.jsii.tgz,sha256=zB0hrMS5fNoDgDapPUlINdha51zpS9xbofXoHCMskwE,22318801
|
|
5
5
|
aws_cdk/alexa_ask/__init__.py,sha256=4u8TRmf7j4H85ymybJxa2UsRHfunE4LECRC-hyIQCkI,35288
|
|
6
6
|
aws_cdk/assertions/__init__.py,sha256=z4U_lPeruWtzub3uBcbDuKLEZYxV0HLxlCtXbBm4EmQ,91338
|
|
7
7
|
aws_cdk/aws_accessanalyzer/__init__.py,sha256=JtcKL_oOxvJGIjINHShMAcdRV69Cyy6NMXOojJmHULI,41882
|
|
@@ -49,7 +49,7 @@ aws_cdk/aws_cleanroomsml/__init__.py,sha256=Bd6XPGt4CSPi0QKdhszGMShjlYv3Y8aCqbLi
|
|
|
49
49
|
aws_cdk/aws_cloud9/__init__.py,sha256=9QbfpwJB-La6JFVa45m25tm0BME2oZGa-KlKJvgg08s,41746
|
|
50
50
|
aws_cdk/aws_cloudformation/__init__.py,sha256=hg7Eo1kjpZtGt_ohVxTeAXaymXWyhkP0D7IcLVGc80w,386745
|
|
51
51
|
aws_cdk/aws_cloudfront/__init__.py,sha256=cmQb7F7jIxyMxwi7LUumlclRQo2QoxQB6TzJQa2izP0,1477384
|
|
52
|
-
aws_cdk/aws_cloudfront/experimental/__init__.py,sha256=
|
|
52
|
+
aws_cdk/aws_cloudfront/experimental/__init__.py,sha256=LanvMgGMqxQ6D0YN9RcWeO5m9BPRgPc9ciDBwn5HLIo,135393
|
|
53
53
|
aws_cdk/aws_cloudfront_origins/__init__.py,sha256=8V5Yq4s5Lf0gj3E-3OlnB9HvX37r0bpvUpVjqIDMO10,110507
|
|
54
54
|
aws_cdk/aws_cloudtrail/__init__.py,sha256=XZzq3cKF6UypwZ0p_lPgXLdoTV2UcJ3VGbbv92ijEtk,314512
|
|
55
55
|
aws_cdk/aws_cloudwatch/__init__.py,sha256=wNegYCGYt5UbM1eHJc1jQ8rCe1HU4ciKzx5lwq_7MBY,801428
|
|
@@ -157,10 +157,10 @@ aws_cdk/aws_kinesisfirehose/__init__.py,sha256=-11Dhhg7xZ9ewcxNrx-WmDBiNKqg0gH4s
|
|
|
157
157
|
aws_cdk/aws_kinesisvideo/__init__.py,sha256=MI0n1D9zgy38fQveoZbc4WEUYLKVxysEgxxXqVxIaas,37397
|
|
158
158
|
aws_cdk/aws_kms/__init__.py,sha256=ospO14_hVC2G5vi2FGBqoyns7AsImI6eVXVhbrf5VMo,232756
|
|
159
159
|
aws_cdk/aws_lakeformation/__init__.py,sha256=vMpuJ7GD_KgIRS1vGIMGZL13SAPTlhkkHUM1HGWXxrs,333603
|
|
160
|
-
aws_cdk/aws_lambda/__init__.py,sha256=
|
|
160
|
+
aws_cdk/aws_lambda/__init__.py,sha256=yGb91I9GWBoi3sz118uGkzPYcKmeUzPd89ZtCpdGMfQ,1629149
|
|
161
161
|
aws_cdk/aws_lambda_destinations/__init__.py,sha256=j-W-G8f-0TH0RHmhPAkPulkdx0LwpBP7n7hIZKCI0sY,20443
|
|
162
162
|
aws_cdk/aws_lambda_event_sources/__init__.py,sha256=6NbrO_oQdwIYr6qD3gytk6j1xkYfP8pJlrQzMPXngys,209085
|
|
163
|
-
aws_cdk/aws_lambda_nodejs/__init__.py,sha256=
|
|
163
|
+
aws_cdk/aws_lambda_nodejs/__init__.py,sha256=7__pdE-Z7rYfW8BqROG-aDFLIShUIJEYUmID5FjbMaU,173946
|
|
164
164
|
aws_cdk/aws_lex/__init__.py,sha256=3Ekq2vpxoZ2jD0WXuliAcq4wFFHK-Q8gtZ7B8_ryulo,699341
|
|
165
165
|
aws_cdk/aws_licensemanager/__init__.py,sha256=o3ZOdIDHetdlTeUnUX_8MFGqwxyfiT5269ZEqwHR53Q,86369
|
|
166
166
|
aws_cdk/aws_lightsail/__init__.py,sha256=YU_KaMoHVnRvcx1COgxGefjmtP6c6iGR6waBt8vANvw,536247
|
|
@@ -282,10 +282,10 @@ aws_cdk/lambda_layer_kubectl/__init__.py,sha256=W-dUsp28JPkIlpvARiWnkMl1qsESOIi8
|
|
|
282
282
|
aws_cdk/lambda_layer_node_proxy_agent/__init__.py,sha256=t7G83ZQzGlrH_CVhMxtbzMGt9Jux06za-lynVNp1CTM,2338
|
|
283
283
|
aws_cdk/pipelines/__init__.py,sha256=rqMJ16vci31b9lt1fABuL65F41UASyxGRtt2XqOdQuY,398815
|
|
284
284
|
aws_cdk/region_info/__init__.py,sha256=OhxtjLqmH2FZZytkekg1b7WVc6HNpgwddo0guOq92j8,38690
|
|
285
|
-
aws_cdk/triggers/__init__.py,sha256
|
|
286
|
-
aws_cdk_lib-2.
|
|
287
|
-
aws_cdk_lib-2.
|
|
288
|
-
aws_cdk_lib-2.
|
|
289
|
-
aws_cdk_lib-2.
|
|
290
|
-
aws_cdk_lib-2.
|
|
291
|
-
aws_cdk_lib-2.
|
|
285
|
+
aws_cdk/triggers/__init__.py,sha256=M7IDuEP3XIH3-EJQaAm4xahkM7i5Icez8bccIsExP9I,120014
|
|
286
|
+
aws_cdk_lib-2.153.0.dist-info/LICENSE,sha256=kEDF86xJUQh1E9M7UPKKbHepBEdFxIUyoGfTwQB7zKg,11391
|
|
287
|
+
aws_cdk_lib-2.153.0.dist-info/METADATA,sha256=9BgGpucK0KlQr5F5bf5hSknjM370u3g6KO7jC65f0Oo,59890
|
|
288
|
+
aws_cdk_lib-2.153.0.dist-info/NOTICE,sha256=BZyRfC0PoNXSoqGVWkGaJhCSmAA1TObhSW8a6_m_SlI,40861
|
|
289
|
+
aws_cdk_lib-2.153.0.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
|
290
|
+
aws_cdk_lib-2.153.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
291
|
+
aws_cdk_lib-2.153.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|