aws-cdk.aws-lambda-python-alpha 2.266.0a0__py3-none-any.whl → 2.268.0a0__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.
- aws_cdk/aws_lambda_python_alpha/__init__.py +4 -3
- aws_cdk/aws_lambda_python_alpha/_jsii/__init__.py +2 -2
- aws_cdk/aws_lambda_python_alpha/_jsii/aws-lambda-python-alpha@2.268.0-alpha.0.jsii.tgz +0 -0
- {aws_cdk_aws_lambda_python_alpha-2.266.0a0.dist-info → aws_cdk_aws_lambda_python_alpha-2.268.0a0.dist-info}/METADATA +2 -2
- aws_cdk_aws_lambda_python_alpha-2.268.0a0.dist-info/RECORD +10 -0
- aws_cdk/aws_lambda_python_alpha/_jsii/aws-lambda-python-alpha@2.266.0-alpha.0.jsii.tgz +0 -0
- aws_cdk_aws_lambda_python_alpha-2.266.0a0.dist-info/RECORD +0 -10
- {aws_cdk_aws_lambda_python_alpha-2.266.0a0.dist-info → aws_cdk_aws_lambda_python_alpha-2.268.0a0.dist-info}/LICENSE +0 -0
- {aws_cdk_aws_lambda_python_alpha-2.266.0a0.dist-info → aws_cdk_aws_lambda_python_alpha-2.268.0a0.dist-info}/NOTICE +0 -0
- {aws_cdk_aws_lambda_python_alpha-2.266.0a0.dist-info → aws_cdk_aws_lambda_python_alpha-2.268.0a0.dist-info}/WHEEL +0 -0
- {aws_cdk_aws_lambda_python_alpha-2.266.0a0.dist-info → aws_cdk_aws_lambda_python_alpha-2.268.0a0.dist-info}/top_level.txt +0 -0
|
@@ -1077,7 +1077,7 @@ class PythonFunction(
|
|
|
1077
1077
|
: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``.
|
|
1078
1078
|
:param runtime_management_mode: Sets the runtime management configuration for a function's version. Default: Auto
|
|
1079
1079
|
: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.
|
|
1080
|
-
:param snap_start: Enable SnapStart for Lambda Function. SnapStart is currently supported for Java 11, Java 17, Python 3.12, Python 3.13, and .NET 8 runtime Default: - No snapstart
|
|
1080
|
+
:param snap_start: Enable SnapStart for Lambda Function. SnapStart is currently supported for Java 11, Java 17, Python 3.12, Python 3.13, and .NET 8 runtime, as well as container image (OCI) deployments. Default: - No snapstart
|
|
1081
1081
|
:param system_log_level: (deprecated) Sets the system log level for the function. Default: "INFO"
|
|
1082
1082
|
:param system_log_level_v2: Sets the system log level for the function. Default: SystemLogLevel.INFO
|
|
1083
1083
|
:param tenancy_config: The tenancy configuration for the function. Default: - Tenant isolation is not enabled
|
|
@@ -1339,7 +1339,7 @@ class PythonFunctionProps(_aws_cdk_aws_lambda_ceddda9d.FunctionOptions):
|
|
|
1339
1339
|
: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``.
|
|
1340
1340
|
:param runtime_management_mode: Sets the runtime management configuration for a function's version. Default: Auto
|
|
1341
1341
|
: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.
|
|
1342
|
-
:param snap_start: Enable SnapStart for Lambda Function. SnapStart is currently supported for Java 11, Java 17, Python 3.12, Python 3.13, and .NET 8 runtime Default: - No snapstart
|
|
1342
|
+
:param snap_start: Enable SnapStart for Lambda Function. SnapStart is currently supported for Java 11, Java 17, Python 3.12, Python 3.13, and .NET 8 runtime, as well as container image (OCI) deployments. Default: - No snapstart
|
|
1343
1343
|
:param system_log_level: (deprecated) Sets the system log level for the function. Default: "INFO"
|
|
1344
1344
|
:param system_log_level_v2: Sets the system log level for the function. Default: SystemLogLevel.INFO
|
|
1345
1345
|
:param tenancy_config: The tenancy configuration for the function. Default: - Tenant isolation is not enabled
|
|
@@ -2146,7 +2146,8 @@ class PythonFunctionProps(_aws_cdk_aws_lambda_ceddda9d.FunctionOptions):
|
|
|
2146
2146
|
) -> typing.Optional["_aws_cdk_aws_lambda_ceddda9d.SnapStartConf"]:
|
|
2147
2147
|
'''Enable SnapStart for Lambda Function.
|
|
2148
2148
|
|
|
2149
|
-
SnapStart is currently supported for Java 11, Java 17, Python 3.12, Python 3.13, and .NET 8 runtime
|
|
2149
|
+
SnapStart is currently supported for Java 11, Java 17, Python 3.12, Python 3.13, and .NET 8 runtime,
|
|
2150
|
+
as well as container image (OCI) deployments.
|
|
2150
2151
|
|
|
2151
2152
|
:default: - No snapstart
|
|
2152
2153
|
'''
|
|
@@ -19,9 +19,9 @@ import constructs._jsii
|
|
|
19
19
|
|
|
20
20
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
21
21
|
"@aws-cdk/aws-lambda-python-alpha",
|
|
22
|
-
"2.
|
|
22
|
+
"2.268.0-alpha.0",
|
|
23
23
|
__name__[0:-6],
|
|
24
|
-
"aws-lambda-python-alpha@2.
|
|
24
|
+
"aws-lambda-python-alpha@2.268.0-alpha.0.jsii.tgz",
|
|
25
25
|
)
|
|
26
26
|
|
|
27
27
|
__all__ = [
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-cdk.aws-lambda-python-alpha
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.268.0a0
|
|
4
4
|
Summary: The CDK Construct Library for AWS Lambda in Python
|
|
5
5
|
Home-page: https://github.com/aws/aws-cdk
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -24,7 +24,7 @@ Requires-Python: >=3.10
|
|
|
24
24
|
Description-Content-Type: text/markdown
|
|
25
25
|
License-File: LICENSE
|
|
26
26
|
License-File: NOTICE
|
|
27
|
-
Requires-Dist: aws-cdk-lib <3.0.0,>=2.
|
|
27
|
+
Requires-Dist: aws-cdk-lib <3.0.0,>=2.268.0
|
|
28
28
|
Requires-Dist: constructs <11.0.0,>=10.5.0
|
|
29
29
|
Requires-Dist: jsii <2.0.0,>=1.139.0
|
|
30
30
|
Requires-Dist: publication >=0.0.3
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
aws_cdk/aws_lambda_python_alpha/__init__.py,sha256=V8eEJeJRlAm691o5cpfJoMctFnrKkUPQqbbI3r2YdOE,154632
|
|
2
|
+
aws_cdk/aws_lambda_python_alpha/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
aws_cdk/aws_lambda_python_alpha/_jsii/__init__.py,sha256=MaWCOO2ZE3F-fUYffValaT58Y0I1MP3g70KKA8xGH9w,561
|
|
4
|
+
aws_cdk/aws_lambda_python_alpha/_jsii/aws-lambda-python-alpha@2.268.0-alpha.0.jsii.tgz,sha256=XMCAC9XU4yhRIk-gxRXMIUqTqFnJ8qXi1Q7XTjyaaSY,64914
|
|
5
|
+
aws_cdk_aws_lambda_python_alpha-2.268.0a0.dist-info/LICENSE,sha256=2i1dyWc6JoMBGYQf_po4g-uM8z4_AahKfcXHpaD71KI,11391
|
|
6
|
+
aws_cdk_aws_lambda_python_alpha-2.268.0a0.dist-info/METADATA,sha256=h3CYoFIhA8EMWXzRgKnKiytxUKewdc_gkbnG5nM8G9E,13025
|
|
7
|
+
aws_cdk_aws_lambda_python_alpha-2.268.0a0.dist-info/NOTICE,sha256=Zzb2qGp704gVWCXjR1Tgak-U6oY8xINryUtPmiPK6J8,113
|
|
8
|
+
aws_cdk_aws_lambda_python_alpha-2.268.0a0.dist-info/WHEEL,sha256=BNRMDyzLkkcmlv0J8ppDQkk2VED33SesJDynr9ED1gc,91
|
|
9
|
+
aws_cdk_aws_lambda_python_alpha-2.268.0a0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
10
|
+
aws_cdk_aws_lambda_python_alpha-2.268.0a0.dist-info/RECORD,,
|
|
Binary file
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
aws_cdk/aws_lambda_python_alpha/__init__.py,sha256=_C8_98-l9AE8brLA1DrAmkZ0BCcBapIbLQ68EupShRQ,154483
|
|
2
|
-
aws_cdk/aws_lambda_python_alpha/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
aws_cdk/aws_lambda_python_alpha/_jsii/__init__.py,sha256=0GBTJQR4XoxdX--L35VOUAFseCsedei0F3QoYz5BKiU,561
|
|
4
|
-
aws_cdk/aws_lambda_python_alpha/_jsii/aws-lambda-python-alpha@2.266.0-alpha.0.jsii.tgz,sha256=TX4U9m5pN3T8bZHWQvy4o9_kkcbWf074yDxyB9BUEq4,63753
|
|
5
|
-
aws_cdk_aws_lambda_python_alpha-2.266.0a0.dist-info/LICENSE,sha256=2i1dyWc6JoMBGYQf_po4g-uM8z4_AahKfcXHpaD71KI,11391
|
|
6
|
-
aws_cdk_aws_lambda_python_alpha-2.266.0a0.dist-info/METADATA,sha256=2FtOYjfHzRmYFvD5is0LQABTsiH33K5bTtF0y_tMToA,13025
|
|
7
|
-
aws_cdk_aws_lambda_python_alpha-2.266.0a0.dist-info/NOTICE,sha256=Zzb2qGp704gVWCXjR1Tgak-U6oY8xINryUtPmiPK6J8,113
|
|
8
|
-
aws_cdk_aws_lambda_python_alpha-2.266.0a0.dist-info/WHEEL,sha256=BNRMDyzLkkcmlv0J8ppDQkk2VED33SesJDynr9ED1gc,91
|
|
9
|
-
aws_cdk_aws_lambda_python_alpha-2.266.0a0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
10
|
-
aws_cdk_aws_lambda_python_alpha-2.266.0a0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|