aws-solutions-constructs.aws-lambda-sqs-lambda 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_sqs_lambda/__init__.py +6 -6
- aws_solutions_constructs/aws_lambda_sqs_lambda/_jsii/__init__.py +2 -2
- aws_solutions_constructs/aws_lambda_sqs_lambda/_jsii/aws-lambda-sqs-lambda@2.99.0.jsii.tgz +0 -0
- {aws_solutions_constructs_aws_lambda_sqs_lambda-2.97.0.dist-info → aws_solutions_constructs_aws_lambda_sqs_lambda-2.99.0.dist-info}/METADATA +5 -5
- aws_solutions_constructs_aws_lambda_sqs_lambda-2.99.0.dist-info/RECORD +9 -0
- {aws_solutions_constructs_aws_lambda_sqs_lambda-2.97.0.dist-info → aws_solutions_constructs_aws_lambda_sqs_lambda-2.99.0.dist-info}/WHEEL +1 -1
- aws_solutions_constructs/aws_lambda_sqs_lambda/_jsii/aws-lambda-sqs-lambda@2.97.0.jsii.tgz +0 -0
- aws_solutions_constructs_aws_lambda_sqs_lambda-2.97.0.dist-info/RECORD +0 -9
- {aws_solutions_constructs_aws_lambda_sqs_lambda-2.97.0.dist-info → aws_solutions_constructs_aws_lambda_sqs_lambda-2.99.0.dist-info}/LICENSE +0 -0
- {aws_solutions_constructs_aws_lambda_sqs_lambda-2.97.0.dist-info → aws_solutions_constructs_aws_lambda_sqs_lambda-2.99.0.dist-info}/top_level.txt +0 -0
|
@@ -72,7 +72,7 @@ class LambdaToSqsToLambda(
|
|
|
72
72
|
'''
|
|
73
73
|
:param scope: - represents the scope for all the resources.
|
|
74
74
|
:param id: - this is a a scope-unique id.
|
|
75
|
-
:param consumer_lambda_function_props: Optional - user provided props to override the default props for the consumer Lambda function. Providing both this and ``existingConsumerLambdaObj``
|
|
75
|
+
:param consumer_lambda_function_props: Optional - user provided props to override the default props for the consumer Lambda function. Providing both this and ``existingConsumerLambdaObj`` causes an error. Default: - Default properties are used.
|
|
76
76
|
:param dead_letter_queue_props: Optional user-provided props to override the default props for the dead letter queue. Only used if the ``deployDeadLetterQueue`` property is set to true. Default: - Default props are used.
|
|
77
77
|
:param deploy_dead_letter_queue: Whether to create a secondary queue to be used as a dead letter queue. Defaults to ``true``. Default: - true.
|
|
78
78
|
:param deploy_vpc: Whether to deploy a new VPC. Default: - false
|
|
@@ -81,7 +81,7 @@ class LambdaToSqsToLambda(
|
|
|
81
81
|
:param existing_queue_obj: An optional, existing SQS queue to be used instead of the default queue. Providing both this and ``queueProps`` will cause an error. Default: - None.
|
|
82
82
|
:param existing_vpc: An existing VPC for the construct to use (construct will NOT create a new VPC in this case).
|
|
83
83
|
:param max_receive_count: The number of times a message can be unsuccessfully dequeued before being moved to the dead letter queue. Defaults to ``15``. Default: - 15.
|
|
84
|
-
:param producer_lambda_function_props: Optional - user provided props to override the default props for the producer Lambda function. Providing both this and ``existingProducerLambdaObj``
|
|
84
|
+
:param producer_lambda_function_props: Optional - user provided props to override the default props for the producer Lambda function. Providing both this and ``existingProducerLambdaObj`` causes an error. Default: - Default properties are used.
|
|
85
85
|
:param queue_environment_variable_name: Optional Name for the Lambda function environment variable set to the URL of the queue. Default: - SQS_QUEUE_URL
|
|
86
86
|
:param queue_props: Optional - user provided properties to override the default properties for the SQS queue. Providing both this and ``existingQueueObj`` will cause an error. Default: - Default props are used.
|
|
87
87
|
:param sqs_event_source_props: Optional user provided properties for the queue event source. Default: - Default props are used
|
|
@@ -181,7 +181,7 @@ class LambdaToSqsToLambdaProps:
|
|
|
181
181
|
vpc_props: typing.Optional[typing.Union[_aws_cdk_aws_ec2_ceddda9d.VpcProps, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
182
182
|
) -> None:
|
|
183
183
|
'''
|
|
184
|
-
:param consumer_lambda_function_props: Optional - user provided props to override the default props for the consumer Lambda function. Providing both this and ``existingConsumerLambdaObj``
|
|
184
|
+
:param consumer_lambda_function_props: Optional - user provided props to override the default props for the consumer Lambda function. Providing both this and ``existingConsumerLambdaObj`` causes an error. Default: - Default properties are used.
|
|
185
185
|
:param dead_letter_queue_props: Optional user-provided props to override the default props for the dead letter queue. Only used if the ``deployDeadLetterQueue`` property is set to true. Default: - Default props are used.
|
|
186
186
|
:param deploy_dead_letter_queue: Whether to create a secondary queue to be used as a dead letter queue. Defaults to ``true``. Default: - true.
|
|
187
187
|
:param deploy_vpc: Whether to deploy a new VPC. Default: - false
|
|
@@ -190,7 +190,7 @@ class LambdaToSqsToLambdaProps:
|
|
|
190
190
|
:param existing_queue_obj: An optional, existing SQS queue to be used instead of the default queue. Providing both this and ``queueProps`` will cause an error. Default: - None.
|
|
191
191
|
:param existing_vpc: An existing VPC for the construct to use (construct will NOT create a new VPC in this case).
|
|
192
192
|
:param max_receive_count: The number of times a message can be unsuccessfully dequeued before being moved to the dead letter queue. Defaults to ``15``. Default: - 15.
|
|
193
|
-
:param producer_lambda_function_props: Optional - user provided props to override the default props for the producer Lambda function. Providing both this and ``existingProducerLambdaObj``
|
|
193
|
+
:param producer_lambda_function_props: Optional - user provided props to override the default props for the producer Lambda function. Providing both this and ``existingProducerLambdaObj`` causes an error. Default: - Default properties are used.
|
|
194
194
|
:param queue_environment_variable_name: Optional Name for the Lambda function environment variable set to the URL of the queue. Default: - SQS_QUEUE_URL
|
|
195
195
|
:param queue_props: Optional - user provided properties to override the default properties for the SQS queue. Providing both this and ``existingQueueObj`` will cause an error. Default: - Default props are used.
|
|
196
196
|
:param sqs_event_source_props: Optional user provided properties for the queue event source. Default: - Default props are used
|
|
@@ -262,7 +262,7 @@ class LambdaToSqsToLambdaProps:
|
|
|
262
262
|
) -> typing.Optional[_aws_cdk_aws_lambda_ceddda9d.FunctionProps]:
|
|
263
263
|
'''Optional - user provided props to override the default props for the consumer Lambda function.
|
|
264
264
|
|
|
265
|
-
Providing both this and ``existingConsumerLambdaObj``
|
|
265
|
+
Providing both this and ``existingConsumerLambdaObj`` causes an error.
|
|
266
266
|
|
|
267
267
|
:default: - Default properties are used.
|
|
268
268
|
'''
|
|
@@ -368,7 +368,7 @@ class LambdaToSqsToLambdaProps:
|
|
|
368
368
|
'''Optional - user provided props to override the default props for the producer Lambda function.
|
|
369
369
|
|
|
370
370
|
Providing
|
|
371
|
-
both this and ``existingProducerLambdaObj``
|
|
371
|
+
both this and ``existingProducerLambdaObj`` causes an error.
|
|
372
372
|
|
|
373
373
|
:default: - Default properties are used.
|
|
374
374
|
'''
|
|
@@ -36,9 +36,9 @@ import constructs._jsii
|
|
|
36
36
|
|
|
37
37
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
38
38
|
"@aws-solutions-constructs/aws-lambda-sqs-lambda",
|
|
39
|
-
"2.
|
|
39
|
+
"2.99.0",
|
|
40
40
|
__name__[0:-6],
|
|
41
|
-
"aws-lambda-sqs-lambda@2.
|
|
41
|
+
"aws-lambda-sqs-lambda@2.99.0.jsii.tgz",
|
|
42
42
|
)
|
|
43
43
|
|
|
44
44
|
__all__ = [
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-solutions-constructs.aws-lambda-sqs-lambda
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.99.0
|
|
4
4
|
Summary: CDK construct that provisions (1) an AWS Lambda function that is configured to send messages to a queue; (2) an Amazon SQS queue; and (3) an AWS Lambda function configured to consume messages from the queue.
|
|
5
5
|
Home-page: https://github.com/awslabs/aws-solutions-constructs.git
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -18,10 +18,10 @@ 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.aws-lambda-sqs ==2.
|
|
23
|
-
Requires-Dist: aws-solutions-constructs.aws-sqs-lambda ==2.
|
|
24
|
-
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.aws-lambda-sqs ==2.99.0
|
|
23
|
+
Requires-Dist: aws-solutions-constructs.aws-sqs-lambda ==2.99.0
|
|
24
|
+
Requires-Dist: aws-solutions-constructs.core ==2.99.0
|
|
25
25
|
Requires-Dist: constructs <11.0.0,>=10.0.0
|
|
26
26
|
Requires-Dist: jsii <2.0.0,>=1.119.0
|
|
27
27
|
Requires-Dist: publication >=0.0.3
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
aws_solutions_constructs/aws_lambda_sqs_lambda/__init__.py,sha256=vLoXVXz6coEO9Krje0CWp4xW2do8ABrsf7KgPiwgisA,29221
|
|
2
|
+
aws_solutions_constructs/aws_lambda_sqs_lambda/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
aws_solutions_constructs/aws_lambda_sqs_lambda/_jsii/__init__.py,sha256=HSwPzxrigBVbPoY6I4FAgRL2iteQpJHe0RsrtfZdgos,1643
|
|
4
|
+
aws_solutions_constructs/aws_lambda_sqs_lambda/_jsii/aws-lambda-sqs-lambda@2.99.0.jsii.tgz,sha256=g5cgoveDGIkVfDW0YNTt0AriSrEs3k6UVnLQS1qrI8k,261352
|
|
5
|
+
aws_solutions_constructs_aws_lambda_sqs_lambda-2.99.0.dist-info/LICENSE,sha256=wnT4A3LZDAEpNzcPDh8VCH0i4wjvmLJ86l3A0tCINmw,10279
|
|
6
|
+
aws_solutions_constructs_aws_lambda_sqs_lambda-2.99.0.dist-info/METADATA,sha256=9DQCtHRcdQcabqs0BLLO2LSedugp1w08FxJZUleZ1y8,1570
|
|
7
|
+
aws_solutions_constructs_aws_lambda_sqs_lambda-2.99.0.dist-info/WHEEL,sha256=BNRMDyzLkkcmlv0J8ppDQkk2VED33SesJDynr9ED1gc,91
|
|
8
|
+
aws_solutions_constructs_aws_lambda_sqs_lambda-2.99.0.dist-info/top_level.txt,sha256=hi3us_KW7V1ocfOqVsNq1o3w552jCEgu_KsCckqYWsg,25
|
|
9
|
+
aws_solutions_constructs_aws_lambda_sqs_lambda-2.99.0.dist-info/RECORD,,
|
|
Binary file
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
aws_solutions_constructs/aws_lambda_sqs_lambda/__init__.py,sha256=A_8ME8kAXCzPb1W1aDHwq8QpaWrLIwfRKcvA0J9ccOE,29197
|
|
2
|
-
aws_solutions_constructs/aws_lambda_sqs_lambda/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
aws_solutions_constructs/aws_lambda_sqs_lambda/_jsii/__init__.py,sha256=ZdmHxGAjbqu6VhGKy5hhZCqOLfmH9m5HDZ4zaYWoHBA,1643
|
|
4
|
-
aws_solutions_constructs/aws_lambda_sqs_lambda/_jsii/aws-lambda-sqs-lambda@2.97.0.jsii.tgz,sha256=qB-OuDTKXhZX_5RJiQ5L23Ou0ya8qduNO3Tl25ugd7E,261256
|
|
5
|
-
aws_solutions_constructs_aws_lambda_sqs_lambda-2.97.0.dist-info/LICENSE,sha256=wnT4A3LZDAEpNzcPDh8VCH0i4wjvmLJ86l3A0tCINmw,10279
|
|
6
|
-
aws_solutions_constructs_aws_lambda_sqs_lambda-2.97.0.dist-info/METADATA,sha256=b76D8QDOBEzviz7u7zXgH_Xoiivz0z1Or1pgVep0drw,1570
|
|
7
|
-
aws_solutions_constructs_aws_lambda_sqs_lambda-2.97.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
8
|
-
aws_solutions_constructs_aws_lambda_sqs_lambda-2.97.0.dist-info/top_level.txt,sha256=hi3us_KW7V1ocfOqVsNq1o3w552jCEgu_KsCckqYWsg,25
|
|
9
|
-
aws_solutions_constructs_aws_lambda_sqs_lambda-2.97.0.dist-info/RECORD,,
|
|
File without changes
|