aws-solutions-constructs.aws-lambda-stepfunctions 2.97.0__py3-none-any.whl → 2.99.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.
- aws_solutions_constructs/aws_lambda_stepfunctions/__init__.py +7 -6
- aws_solutions_constructs/aws_lambda_stepfunctions/_jsii/__init__.py +2 -2
- aws_solutions_constructs/aws_lambda_stepfunctions/_jsii/aws-lambda-stepfunctions@2.99.0.jsii.tgz +0 -0
- {aws_solutions_constructs_aws_lambda_stepfunctions-2.97.0.dist-info → aws_solutions_constructs_aws_lambda_stepfunctions-2.99.0.dist-info}/METADATA +3 -3
- aws_solutions_constructs_aws_lambda_stepfunctions-2.99.0.dist-info/RECORD +9 -0
- {aws_solutions_constructs_aws_lambda_stepfunctions-2.97.0.dist-info → aws_solutions_constructs_aws_lambda_stepfunctions-2.99.0.dist-info}/WHEEL +1 -1
- aws_solutions_constructs/aws_lambda_stepfunctions/_jsii/aws-lambda-stepfunctions@2.97.0.jsii.tgz +0 -0
- aws_solutions_constructs_aws_lambda_stepfunctions-2.97.0.dist-info/RECORD +0 -9
- {aws_solutions_constructs_aws_lambda_stepfunctions-2.97.0.dist-info → aws_solutions_constructs_aws_lambda_stepfunctions-2.99.0.dist-info}/LICENSE +0 -0
- {aws_solutions_constructs_aws_lambda_stepfunctions-2.97.0.dist-info → aws_solutions_constructs_aws_lambda_stepfunctions-2.99.0.dist-info}/top_level.txt +0 -0
|
@@ -68,12 +68,12 @@ class LambdaToStepfunctions(
|
|
|
68
68
|
'''
|
|
69
69
|
:param scope: - represents the scope for all the resources.
|
|
70
70
|
:param id: - this is a a scope-unique id.
|
|
71
|
-
:param state_machine_props: User provided
|
|
71
|
+
:param state_machine_props: User provided props for the sfn.StateMachine. This or existingStateMachine is required. If you provide a value for logs.destination, it must be an ILogGroup even though the prop type is ILogGroupRef. The CDK change to ILogGroupRef in v2.235.0 is incompatible with our interface without introducing breaking changes, so we still require an ILogGroup (as this implements ILogGroupRef, you can just assign it to logs.destination). Default: - None
|
|
72
72
|
:param create_cloud_watch_alarms: Whether to create recommended CloudWatch alarms. Default: - Alarms are created
|
|
73
73
|
:param deploy_vpc: Whether to deploy a new VPC. Default: - false
|
|
74
74
|
:param existing_lambda_obj: Optional - instance of an existing Lambda Function object, providing both this and ``lambdaFunctionProps`` will cause an error. Default: - None
|
|
75
75
|
:param existing_vpc: An existing VPC for the construct to use (construct will NOT create a new VPC in this case).
|
|
76
|
-
:param lambda_function_props: Optional - user provided props to override the default props for the Lambda function. Providing both this and ``existingLambdaObj``
|
|
76
|
+
:param lambda_function_props: Optional - user provided props to override the default props for the Lambda function. Providing both this and ``existingLambdaObj`` causes an error. Default: - Default properties are used.
|
|
77
77
|
:param log_group_props: User provided props to override the default props for the CloudWatchLogs LogGroup. Default: - Default props are used
|
|
78
78
|
:param state_machine_environment_variable_name: Optional Name for the Lambda function environment variable set to the ARN of the state machine. Default: - STATE_MACHINE_ARN
|
|
79
79
|
:param vpc_props: Properties to override default properties if deployVpc is true.
|
|
@@ -158,12 +158,12 @@ class LambdaToStepfunctionsProps:
|
|
|
158
158
|
vpc_props: typing.Optional[typing.Union[_aws_cdk_aws_ec2_ceddda9d.VpcProps, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
159
159
|
) -> None:
|
|
160
160
|
'''
|
|
161
|
-
:param state_machine_props: User provided
|
|
161
|
+
:param state_machine_props: User provided props for the sfn.StateMachine. This or existingStateMachine is required. If you provide a value for logs.destination, it must be an ILogGroup even though the prop type is ILogGroupRef. The CDK change to ILogGroupRef in v2.235.0 is incompatible with our interface without introducing breaking changes, so we still require an ILogGroup (as this implements ILogGroupRef, you can just assign it to logs.destination). Default: - None
|
|
162
162
|
:param create_cloud_watch_alarms: Whether to create recommended CloudWatch alarms. Default: - Alarms are created
|
|
163
163
|
:param deploy_vpc: Whether to deploy a new VPC. Default: - false
|
|
164
164
|
:param existing_lambda_obj: Optional - instance of an existing Lambda Function object, providing both this and ``lambdaFunctionProps`` will cause an error. Default: - None
|
|
165
165
|
:param existing_vpc: An existing VPC for the construct to use (construct will NOT create a new VPC in this case).
|
|
166
|
-
:param lambda_function_props: Optional - user provided props to override the default props for the Lambda function. Providing both this and ``existingLambdaObj``
|
|
166
|
+
:param lambda_function_props: Optional - user provided props to override the default props for the Lambda function. Providing both this and ``existingLambdaObj`` causes an error. Default: - Default properties are used.
|
|
167
167
|
:param log_group_props: User provided props to override the default props for the CloudWatchLogs LogGroup. Default: - Default props are used
|
|
168
168
|
:param state_machine_environment_variable_name: Optional Name for the Lambda function environment variable set to the ARN of the state machine. Default: - STATE_MACHINE_ARN
|
|
169
169
|
:param vpc_props: Properties to override default properties if deployVpc is true.
|
|
@@ -213,7 +213,7 @@ class LambdaToStepfunctionsProps:
|
|
|
213
213
|
def state_machine_props(
|
|
214
214
|
self,
|
|
215
215
|
) -> _aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps:
|
|
216
|
-
'''User provided
|
|
216
|
+
'''User provided props for the sfn.StateMachine. This or existingStateMachine is required. If you provide a value for logs.destination, it must be an ILogGroup even though the prop type is ILogGroupRef. The CDK change to ILogGroupRef in v2.235.0 is incompatible with our interface without introducing breaking changes, so we still require an ILogGroup (as this implements ILogGroupRef, you can just assign it to logs.destination).
|
|
217
217
|
|
|
218
218
|
:default: - None
|
|
219
219
|
'''
|
|
@@ -262,7 +262,8 @@ class LambdaToStepfunctionsProps:
|
|
|
262
262
|
) -> typing.Optional[_aws_cdk_aws_lambda_ceddda9d.FunctionProps]:
|
|
263
263
|
'''Optional - user provided props to override the default props for the Lambda function.
|
|
264
264
|
|
|
265
|
-
Providing both this and ``existingLambdaObj``
|
|
265
|
+
Providing both this and ``existingLambdaObj``
|
|
266
|
+
causes an error.
|
|
266
267
|
|
|
267
268
|
:default: - Default properties are used.
|
|
268
269
|
'''
|
|
@@ -34,9 +34,9 @@ import constructs._jsii
|
|
|
34
34
|
|
|
35
35
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
36
36
|
"@aws-solutions-constructs/aws-lambda-stepfunctions",
|
|
37
|
-
"2.
|
|
37
|
+
"2.99.0",
|
|
38
38
|
__name__[0:-6],
|
|
39
|
-
"aws-lambda-stepfunctions@2.
|
|
39
|
+
"aws-lambda-stepfunctions@2.99.0.jsii.tgz",
|
|
40
40
|
)
|
|
41
41
|
|
|
42
42
|
__all__ = [
|
aws_solutions_constructs/aws_lambda_stepfunctions/_jsii/aws-lambda-stepfunctions@2.99.0.jsii.tgz
ADDED
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-solutions-constructs.aws-lambda-stepfunctions
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.99.0
|
|
4
4
|
Summary: CDK constructs for defining an interaction between an AWS Lambda function and an AWS Step Function.
|
|
5
5
|
Home-page: https://github.com/awslabs/aws-solutions-constructs.git
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -18,8 +18,8 @@ Classifier: License :: OSI Approved
|
|
|
18
18
|
Requires-Python: ~=3.9
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: LICENSE
|
|
21
|
-
Requires-Dist: aws-cdk-lib <3.0.0,>=2.
|
|
22
|
-
Requires-Dist: aws-solutions-constructs.core ==2.
|
|
21
|
+
Requires-Dist: aws-cdk-lib <3.0.0,>=2.238.0
|
|
22
|
+
Requires-Dist: aws-solutions-constructs.core ==2.99.0
|
|
23
23
|
Requires-Dist: constructs <11.0.0,>=10.0.0
|
|
24
24
|
Requires-Dist: jsii <2.0.0,>=1.119.0
|
|
25
25
|
Requires-Dist: publication >=0.0.3
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
aws_solutions_constructs/aws_lambda_stepfunctions/__init__.py,sha256=kYY1-MoXEVffAKkdJWRKV8HitknDG90AKg9Jve8W-YQ,20291
|
|
2
|
+
aws_solutions_constructs/aws_lambda_stepfunctions/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
aws_solutions_constructs/aws_lambda_stepfunctions/_jsii/__init__.py,sha256=NTh9ECqxuO3EXAu8d0XybIxDrIO0nHsu8f2-r2oMfFU,1543
|
|
4
|
+
aws_solutions_constructs/aws_lambda_stepfunctions/_jsii/aws-lambda-stepfunctions@2.99.0.jsii.tgz,sha256=OqfLEky0rR3kcmp0JIl3Z5nV9l2mPXAUOyzEsIW4URQ,150433
|
|
5
|
+
aws_solutions_constructs_aws_lambda_stepfunctions-2.99.0.dist-info/LICENSE,sha256=wnT4A3LZDAEpNzcPDh8VCH0i4wjvmLJ86l3A0tCINmw,10279
|
|
6
|
+
aws_solutions_constructs_aws_lambda_stepfunctions-2.99.0.dist-info/METADATA,sha256=bZOXsuI_TQg8vNOMkuWIBOdKvOo2fwVj0GtcCtqtjNA,1340
|
|
7
|
+
aws_solutions_constructs_aws_lambda_stepfunctions-2.99.0.dist-info/WHEEL,sha256=BNRMDyzLkkcmlv0J8ppDQkk2VED33SesJDynr9ED1gc,91
|
|
8
|
+
aws_solutions_constructs_aws_lambda_stepfunctions-2.99.0.dist-info/top_level.txt,sha256=hi3us_KW7V1ocfOqVsNq1o3w552jCEgu_KsCckqYWsg,25
|
|
9
|
+
aws_solutions_constructs_aws_lambda_stepfunctions-2.99.0.dist-info/RECORD,,
|
aws_solutions_constructs/aws_lambda_stepfunctions/_jsii/aws-lambda-stepfunctions@2.97.0.jsii.tgz
DELETED
|
Binary file
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
aws_solutions_constructs/aws_lambda_stepfunctions/__init__.py,sha256=BbxVDdb3wrjB_cRMhbYqFrOsKp3Fd1E-blOJQB6gTEk,19161
|
|
2
|
-
aws_solutions_constructs/aws_lambda_stepfunctions/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
aws_solutions_constructs/aws_lambda_stepfunctions/_jsii/__init__.py,sha256=ZymsFWHYmRYKGpjYvbN9XJrQrOVFQKjQnEMD8zWcWuo,1543
|
|
4
|
-
aws_solutions_constructs/aws_lambda_stepfunctions/_jsii/aws-lambda-stepfunctions@2.97.0.jsii.tgz,sha256=dwt5NNYzgt3rmzMVEoEHdXAG2prh_8EFfXYesbBaXaI,141261
|
|
5
|
-
aws_solutions_constructs_aws_lambda_stepfunctions-2.97.0.dist-info/LICENSE,sha256=wnT4A3LZDAEpNzcPDh8VCH0i4wjvmLJ86l3A0tCINmw,10279
|
|
6
|
-
aws_solutions_constructs_aws_lambda_stepfunctions-2.97.0.dist-info/METADATA,sha256=v4gb72m7yVxEg9jsjssWi0Uaz-pCCpjKACTklTC8bVw,1340
|
|
7
|
-
aws_solutions_constructs_aws_lambda_stepfunctions-2.97.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
8
|
-
aws_solutions_constructs_aws_lambda_stepfunctions-2.97.0.dist-info/top_level.txt,sha256=hi3us_KW7V1ocfOqVsNq1o3w552jCEgu_KsCckqYWsg,25
|
|
9
|
-
aws_solutions_constructs_aws_lambda_stepfunctions-2.97.0.dist-info/RECORD,,
|
|
File without changes
|