aws-solutions-constructs.core 2.75.0__tar.gz → 2.77.0__tar.gz
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_core-2.75.0/src/aws_solutions_constructs.core.egg-info → aws_solutions_constructs_core-2.77.0}/PKG-INFO +2 -2
- {aws_solutions_constructs_core-2.75.0 → aws_solutions_constructs_core-2.77.0}/setup.py +3 -3
- {aws_solutions_constructs_core-2.75.0 → aws_solutions_constructs_core-2.77.0}/src/aws_solutions_constructs/core/__init__.py +21 -18
- {aws_solutions_constructs_core-2.75.0 → aws_solutions_constructs_core-2.77.0}/src/aws_solutions_constructs/core/_jsii/__init__.py +1 -1
- aws_solutions_constructs_core-2.77.0/src/aws_solutions_constructs/core/_jsii/core@2.77.0.jsii.tgz +0 -0
- {aws_solutions_constructs_core-2.75.0 → aws_solutions_constructs_core-2.77.0/src/aws_solutions_constructs.core.egg-info}/PKG-INFO +2 -2
- {aws_solutions_constructs_core-2.75.0 → aws_solutions_constructs_core-2.77.0}/src/aws_solutions_constructs.core.egg-info/SOURCES.txt +1 -1
- {aws_solutions_constructs_core-2.75.0 → aws_solutions_constructs_core-2.77.0}/src/aws_solutions_constructs.core.egg-info/requires.txt +1 -1
- aws_solutions_constructs_core-2.75.0/src/aws_solutions_constructs/core/_jsii/core@2.75.0.jsii.tgz +0 -0
- {aws_solutions_constructs_core-2.75.0 → aws_solutions_constructs_core-2.77.0}/LICENSE +0 -0
- {aws_solutions_constructs_core-2.75.0 → aws_solutions_constructs_core-2.77.0}/MANIFEST.in +0 -0
- {aws_solutions_constructs_core-2.75.0 → aws_solutions_constructs_core-2.77.0}/README.md +0 -0
- {aws_solutions_constructs_core-2.75.0 → aws_solutions_constructs_core-2.77.0}/pyproject.toml +0 -0
- {aws_solutions_constructs_core-2.75.0 → aws_solutions_constructs_core-2.77.0}/setup.cfg +0 -0
- {aws_solutions_constructs_core-2.75.0 → aws_solutions_constructs_core-2.77.0}/src/aws_solutions_constructs/core/py.typed +0 -0
- {aws_solutions_constructs_core-2.75.0 → aws_solutions_constructs_core-2.77.0}/src/aws_solutions_constructs.core.egg-info/dependency_links.txt +0 -0
- {aws_solutions_constructs_core-2.75.0 → aws_solutions_constructs_core-2.77.0}/src/aws_solutions_constructs.core.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-solutions-constructs.core
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.77.0
|
|
4
4
|
Summary: Core CDK Construct for patterns library
|
|
5
5
|
Home-page: https://github.com/awslabs/aws-solutions-constructs.git
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -19,7 +19,7 @@ Classifier: License :: OSI Approved
|
|
|
19
19
|
Requires-Python: ~=3.8
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
License-File: LICENSE
|
|
22
|
-
Requires-Dist: aws-cdk-lib<3.0.0,>=2.
|
|
22
|
+
Requires-Dist: aws-cdk-lib<3.0.0,>=2.177.0
|
|
23
23
|
Requires-Dist: constructs<11.0.0,>=10.0.0
|
|
24
24
|
Requires-Dist: jsii<2.0.0,>=1.106.0
|
|
25
25
|
Requires-Dist: publication>=0.0.3
|
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "aws-solutions-constructs.core",
|
|
8
|
-
"version": "2.
|
|
8
|
+
"version": "2.77.0",
|
|
9
9
|
"description": "Core CDK Construct for patterns library",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"url": "https://github.com/awslabs/aws-solutions-constructs.git",
|
|
@@ -26,7 +26,7 @@ kwargs = json.loads(
|
|
|
26
26
|
],
|
|
27
27
|
"package_data": {
|
|
28
28
|
"aws_solutions_constructs.core._jsii": [
|
|
29
|
-
"core@2.
|
|
29
|
+
"core@2.77.0.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"aws_solutions_constructs.core": [
|
|
32
32
|
"py.typed"
|
|
@@ -34,7 +34,7 @@ kwargs = json.loads(
|
|
|
34
34
|
},
|
|
35
35
|
"python_requires": "~=3.8",
|
|
36
36
|
"install_requires": [
|
|
37
|
-
"aws-cdk-lib>=2.
|
|
37
|
+
"aws-cdk-lib>=2.177.0, <3.0.0",
|
|
38
38
|
"constructs>=10.0.0, <11.0.0",
|
|
39
39
|
"jsii>=1.106.0, <2.0.0",
|
|
40
40
|
"publication>=0.0.3",
|
|
@@ -1729,7 +1729,7 @@ class BuildQueueProps:
|
|
|
1729
1729
|
dead_letter_queue_props: typing.Optional[typing.Union[_aws_cdk_aws_sqs_ceddda9d.QueueProps, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
1730
1730
|
deploy_dead_letter_queue: typing.Optional[builtins.bool] = None,
|
|
1731
1731
|
enable_encryption_with_customer_managed_key: typing.Optional[builtins.bool] = None,
|
|
1732
|
-
encryption_key: typing.Optional[_aws_cdk_aws_kms_ceddda9d.
|
|
1732
|
+
encryption_key: typing.Optional[_aws_cdk_aws_kms_ceddda9d.IKey] = None,
|
|
1733
1733
|
encryption_key_props: typing.Optional[typing.Union[_aws_cdk_aws_kms_ceddda9d.KeyProps, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
1734
1734
|
existing_queue_obj: typing.Optional[_aws_cdk_aws_sqs_ceddda9d.Queue] = None,
|
|
1735
1735
|
max_receive_count: typing.Optional[jsii.Number] = None,
|
|
@@ -1847,13 +1847,13 @@ class BuildQueueProps:
|
|
|
1847
1847
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
1848
1848
|
|
|
1849
1849
|
@builtins.property
|
|
1850
|
-
def encryption_key(self) -> typing.Optional[_aws_cdk_aws_kms_ceddda9d.
|
|
1850
|
+
def encryption_key(self) -> typing.Optional[_aws_cdk_aws_kms_ceddda9d.IKey]:
|
|
1851
1851
|
'''An optional, imported encryption key to encrypt the SQS Queue with.
|
|
1852
1852
|
|
|
1853
1853
|
:default: - None
|
|
1854
1854
|
'''
|
|
1855
1855
|
result = self._values.get("encryption_key")
|
|
1856
|
-
return typing.cast(typing.Optional[_aws_cdk_aws_kms_ceddda9d.
|
|
1856
|
+
return typing.cast(typing.Optional[_aws_cdk_aws_kms_ceddda9d.IKey], result)
|
|
1857
1857
|
|
|
1858
1858
|
@builtins.property
|
|
1859
1859
|
def encryption_key_props(
|
|
@@ -4393,8 +4393,8 @@ class EventBridgeProps:
|
|
|
4393
4393
|
def __init__(
|
|
4394
4394
|
self,
|
|
4395
4395
|
*,
|
|
4396
|
-
event_bus_props: typing.Union[_aws_cdk_aws_events_ceddda9d.EventBusProps, typing.Dict[builtins.str, typing.Any]],
|
|
4397
|
-
existing_event_bus_interface: _aws_cdk_aws_events_ceddda9d.IEventBus,
|
|
4396
|
+
event_bus_props: typing.Optional[typing.Union[_aws_cdk_aws_events_ceddda9d.EventBusProps, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
4397
|
+
existing_event_bus_interface: typing.Optional[_aws_cdk_aws_events_ceddda9d.IEventBus] = None,
|
|
4398
4398
|
) -> None:
|
|
4399
4399
|
'''
|
|
4400
4400
|
:param event_bus_props: -
|
|
@@ -4406,22 +4406,25 @@ class EventBridgeProps:
|
|
|
4406
4406
|
type_hints = typing.get_type_hints(_typecheckingstub__93242b8fe544dd6ab96871ea0286ca1ca0675f344a0e8e2fd2116e52aa4fdabf)
|
|
4407
4407
|
check_type(argname="argument event_bus_props", value=event_bus_props, expected_type=type_hints["event_bus_props"])
|
|
4408
4408
|
check_type(argname="argument existing_event_bus_interface", value=existing_event_bus_interface, expected_type=type_hints["existing_event_bus_interface"])
|
|
4409
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
4410
|
-
|
|
4411
|
-
"
|
|
4412
|
-
|
|
4409
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
4410
|
+
if event_bus_props is not None:
|
|
4411
|
+
self._values["event_bus_props"] = event_bus_props
|
|
4412
|
+
if existing_event_bus_interface is not None:
|
|
4413
|
+
self._values["existing_event_bus_interface"] = existing_event_bus_interface
|
|
4413
4414
|
|
|
4414
4415
|
@builtins.property
|
|
4415
|
-
def event_bus_props(
|
|
4416
|
+
def event_bus_props(
|
|
4417
|
+
self,
|
|
4418
|
+
) -> typing.Optional[_aws_cdk_aws_events_ceddda9d.EventBusProps]:
|
|
4416
4419
|
result = self._values.get("event_bus_props")
|
|
4417
|
-
|
|
4418
|
-
return typing.cast(_aws_cdk_aws_events_ceddda9d.EventBusProps, result)
|
|
4420
|
+
return typing.cast(typing.Optional[_aws_cdk_aws_events_ceddda9d.EventBusProps], result)
|
|
4419
4421
|
|
|
4420
4422
|
@builtins.property
|
|
4421
|
-
def existing_event_bus_interface(
|
|
4423
|
+
def existing_event_bus_interface(
|
|
4424
|
+
self,
|
|
4425
|
+
) -> typing.Optional[_aws_cdk_aws_events_ceddda9d.IEventBus]:
|
|
4422
4426
|
result = self._values.get("existing_event_bus_interface")
|
|
4423
|
-
|
|
4424
|
-
return typing.cast(_aws_cdk_aws_events_ceddda9d.IEventBus, result)
|
|
4427
|
+
return typing.cast(typing.Optional[_aws_cdk_aws_events_ceddda9d.IEventBus], result)
|
|
4425
4428
|
|
|
4426
4429
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4427
4430
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -6652,7 +6655,7 @@ def _typecheckingstub__f6b0628b99348c4f52c56911b1d1df16b203612119c6a5d046c912ca3
|
|
|
6652
6655
|
dead_letter_queue_props: typing.Optional[typing.Union[_aws_cdk_aws_sqs_ceddda9d.QueueProps, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
6653
6656
|
deploy_dead_letter_queue: typing.Optional[builtins.bool] = None,
|
|
6654
6657
|
enable_encryption_with_customer_managed_key: typing.Optional[builtins.bool] = None,
|
|
6655
|
-
encryption_key: typing.Optional[_aws_cdk_aws_kms_ceddda9d.
|
|
6658
|
+
encryption_key: typing.Optional[_aws_cdk_aws_kms_ceddda9d.IKey] = None,
|
|
6656
6659
|
encryption_key_props: typing.Optional[typing.Union[_aws_cdk_aws_kms_ceddda9d.KeyProps, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
6657
6660
|
existing_queue_obj: typing.Optional[_aws_cdk_aws_sqs_ceddda9d.Queue] = None,
|
|
6658
6661
|
max_receive_count: typing.Optional[jsii.Number] = None,
|
|
@@ -6979,8 +6982,8 @@ def _typecheckingstub__fb247f6ada82965a3afeba568ee3ee0a3bacfe3f70c90eb7a7d261e9a
|
|
|
6979
6982
|
|
|
6980
6983
|
def _typecheckingstub__93242b8fe544dd6ab96871ea0286ca1ca0675f344a0e8e2fd2116e52aa4fdabf(
|
|
6981
6984
|
*,
|
|
6982
|
-
event_bus_props: typing.Union[_aws_cdk_aws_events_ceddda9d.EventBusProps, typing.Dict[builtins.str, typing.Any]],
|
|
6983
|
-
existing_event_bus_interface: _aws_cdk_aws_events_ceddda9d.IEventBus,
|
|
6985
|
+
event_bus_props: typing.Optional[typing.Union[_aws_cdk_aws_events_ceddda9d.EventBusProps, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
6986
|
+
existing_event_bus_interface: typing.Optional[_aws_cdk_aws_events_ceddda9d.IEventBus] = None,
|
|
6984
6987
|
) -> None:
|
|
6985
6988
|
"""Type checking stubs"""
|
|
6986
6989
|
pass
|
|
@@ -32,7 +32,7 @@ import aws_cdk._jsii
|
|
|
32
32
|
import constructs._jsii
|
|
33
33
|
|
|
34
34
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
35
|
-
"@aws-solutions-constructs/core", "2.
|
|
35
|
+
"@aws-solutions-constructs/core", "2.77.0", __name__[0:-6], "core@2.77.0.jsii.tgz"
|
|
36
36
|
)
|
|
37
37
|
|
|
38
38
|
__all__ = [
|
aws_solutions_constructs_core-2.77.0/src/aws_solutions_constructs/core/_jsii/core@2.77.0.jsii.tgz
ADDED
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-solutions-constructs.core
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.77.0
|
|
4
4
|
Summary: Core CDK Construct for patterns library
|
|
5
5
|
Home-page: https://github.com/awslabs/aws-solutions-constructs.git
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -19,7 +19,7 @@ Classifier: License :: OSI Approved
|
|
|
19
19
|
Requires-Python: ~=3.8
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
License-File: LICENSE
|
|
22
|
-
Requires-Dist: aws-cdk-lib<3.0.0,>=2.
|
|
22
|
+
Requires-Dist: aws-cdk-lib<3.0.0,>=2.177.0
|
|
23
23
|
Requires-Dist: constructs<11.0.0,>=10.0.0
|
|
24
24
|
Requires-Dist: jsii<2.0.0,>=1.106.0
|
|
25
25
|
Requires-Dist: publication>=0.0.3
|
|
@@ -11,4 +11,4 @@ src/aws_solutions_constructs.core.egg-info/top_level.txt
|
|
|
11
11
|
src/aws_solutions_constructs/core/__init__.py
|
|
12
12
|
src/aws_solutions_constructs/core/py.typed
|
|
13
13
|
src/aws_solutions_constructs/core/_jsii/__init__.py
|
|
14
|
-
src/aws_solutions_constructs/core/_jsii/core@2.
|
|
14
|
+
src/aws_solutions_constructs/core/_jsii/core@2.77.0.jsii.tgz
|
aws_solutions_constructs_core-2.75.0/src/aws_solutions_constructs/core/_jsii/core@2.75.0.jsii.tgz
DELETED
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{aws_solutions_constructs_core-2.75.0 → aws_solutions_constructs_core-2.77.0}/pyproject.toml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|