cloudstructs 0.5.1__tar.gz → 0.9.27__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.
- {cloudstructs-0.5.1/src/cloudstructs.egg-info → cloudstructs-0.9.27}/PKG-INFO +11 -6
- {cloudstructs-0.5.1 → cloudstructs-0.9.27}/README.md +3 -0
- cloudstructs-0.9.27/pyproject.toml +9 -0
- {cloudstructs-0.5.1 → cloudstructs-0.9.27}/setup.py +8 -9
- {cloudstructs-0.5.1 → cloudstructs-0.9.27}/src/cloudstructs/__init__.py +1684 -256
- cloudstructs-0.9.27/src/cloudstructs/_jsii/__init__.py +42 -0
- cloudstructs-0.9.27/src/cloudstructs/_jsii/cloudstructs@0.9.27.jsii.tgz +0 -0
- {cloudstructs-0.5.1 → cloudstructs-0.9.27/src/cloudstructs.egg-info}/PKG-INFO +11 -6
- {cloudstructs-0.5.1 → cloudstructs-0.9.27}/src/cloudstructs.egg-info/SOURCES.txt +1 -1
- cloudstructs-0.9.27/src/cloudstructs.egg-info/requires.txt +5 -0
- cloudstructs-0.5.1/pyproject.toml +0 -3
- cloudstructs-0.5.1/src/cloudstructs/_jsii/__init__.py +0 -24
- cloudstructs-0.5.1/src/cloudstructs/_jsii/cloudstructs@0.5.1.jsii.tgz +0 -0
- cloudstructs-0.5.1/src/cloudstructs.egg-info/requires.txt +0 -6
- {cloudstructs-0.5.1 → cloudstructs-0.9.27}/LICENSE +0 -0
- {cloudstructs-0.5.1 → cloudstructs-0.9.27}/MANIFEST.in +0 -0
- {cloudstructs-0.5.1 → cloudstructs-0.9.27}/setup.cfg +0 -0
- {cloudstructs-0.5.1 → cloudstructs-0.9.27}/src/cloudstructs/py.typed +0 -0
- {cloudstructs-0.5.1 → cloudstructs-0.9.27}/src/cloudstructs.egg-info/dependency_links.txt +0 -0
- {cloudstructs-0.5.1 → cloudstructs-0.9.27}/src/cloudstructs.egg-info/top_level.txt +0 -0
|
@@ -1,26 +1,30 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cloudstructs
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.9.27
|
|
4
4
|
Summary: High-level constructs for AWS CDK
|
|
5
5
|
Home-page: https://github.com/jogold/cloudstructs.git
|
|
6
6
|
Author: Jonathan Goldwasser<jonathan.goldwasser@gmail.com>
|
|
7
7
|
License: Apache-2.0
|
|
8
8
|
Project-URL: Source, https://github.com/jogold/cloudstructs.git
|
|
9
|
-
Platform: UNKNOWN
|
|
10
9
|
Classifier: Intended Audience :: Developers
|
|
11
10
|
Classifier: Operating System :: OS Independent
|
|
12
11
|
Classifier: Programming Language :: JavaScript
|
|
13
12
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
15
13
|
Classifier: Programming Language :: Python :: 3.8
|
|
16
14
|
Classifier: Programming Language :: Python :: 3.9
|
|
17
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
17
|
Classifier: Typing :: Typed
|
|
19
18
|
Classifier: Development Status :: 5 - Production/Stable
|
|
20
19
|
Classifier: License :: OSI Approved
|
|
21
|
-
Requires-Python: ~=3.
|
|
20
|
+
Requires-Python: ~=3.8
|
|
22
21
|
Description-Content-Type: text/markdown
|
|
23
22
|
License-File: LICENSE
|
|
23
|
+
Requires-Dist: aws-cdk-lib<3.0.0,>=2.133.0
|
|
24
|
+
Requires-Dist: constructs<11.0.0,>=10.0.5
|
|
25
|
+
Requires-Dist: jsii<2.0.0,>=1.106.0
|
|
26
|
+
Requires-Dist: publication>=0.0.3
|
|
27
|
+
Requires-Dist: typeguard<4.3.0,>=2.13.3
|
|
24
28
|
|
|
25
29
|
# cloudstructs
|
|
26
30
|
|
|
@@ -39,11 +43,14 @@ Version >= 0.2.0 requires AWS CDK v2.
|
|
|
39
43
|
a rule
|
|
40
44
|
* [`EmailReceiver`](src/email-receiver) Receive emails through SES, save them to S3
|
|
41
45
|
and invoke a Lambda function
|
|
46
|
+
* [`MjmlTemplate`](src/mjml-template) SES email template from [MJML](https://mjml.io/)
|
|
42
47
|
* [`SlackApp`](src/slack-app) Deploy Slack apps from manifests
|
|
43
48
|
* [`SlackEvents`](src/slack-events) Send Slack events to Amazon EventBridge
|
|
44
49
|
* [`SlackTextract`](src/slack-textract) Extract text from images posted to Slack
|
|
45
50
|
using Amazon Textract. The extracted text is posted in a thread under the image
|
|
46
51
|
and gets indexed!
|
|
52
|
+
* [`SslServerTest`](src/ssl-server-test) Test a server/host for SSL/TLS on schedule and
|
|
53
|
+
get notified when the overall rating is not satisfactory. [Powered by Qualys SSL Labs](https://www.ssllabs.com/).
|
|
47
54
|
* [`StateMachineCustomResourceProvider`](src/state-machine-cr-provider) Implement custom
|
|
48
55
|
resources with AWS Step Functions state machines
|
|
49
56
|
* [`StaticWebsite`](src/static-website) A CloudFront static website hosted on S3 with
|
|
@@ -52,5 +59,3 @@ Version >= 0.2.0 requires AWS CDK v2.
|
|
|
52
59
|
* [`ToolkitCleaner`](src/toolkit-cleaner) Clean unused S3 and ECR assets from your CDK
|
|
53
60
|
Toolkit.
|
|
54
61
|
* [`UrlShortener`](src/url-shortener) Deploy an URL shortener API
|
|
55
|
-
|
|
56
|
-
|
|
@@ -15,11 +15,14 @@ Version >= 0.2.0 requires AWS CDK v2.
|
|
|
15
15
|
a rule
|
|
16
16
|
* [`EmailReceiver`](src/email-receiver) Receive emails through SES, save them to S3
|
|
17
17
|
and invoke a Lambda function
|
|
18
|
+
* [`MjmlTemplate`](src/mjml-template) SES email template from [MJML](https://mjml.io/)
|
|
18
19
|
* [`SlackApp`](src/slack-app) Deploy Slack apps from manifests
|
|
19
20
|
* [`SlackEvents`](src/slack-events) Send Slack events to Amazon EventBridge
|
|
20
21
|
* [`SlackTextract`](src/slack-textract) Extract text from images posted to Slack
|
|
21
22
|
using Amazon Textract. The extracted text is posted in a thread under the image
|
|
22
23
|
and gets indexed!
|
|
24
|
+
* [`SslServerTest`](src/ssl-server-test) Test a server/host for SSL/TLS on schedule and
|
|
25
|
+
get notified when the overall rating is not satisfactory. [Powered by Qualys SSL Labs](https://www.ssllabs.com/).
|
|
23
26
|
* [`StateMachineCustomResourceProvider`](src/state-machine-cr-provider) Implement custom
|
|
24
27
|
resources with AWS Step Functions state machines
|
|
25
28
|
* [`StaticWebsite`](src/static-website) A CloudFront static website hosted on S3 with
|
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "cloudstructs",
|
|
8
|
-
"version": "0.
|
|
8
|
+
"version": "0.9.27",
|
|
9
9
|
"description": "High-level constructs for AWS CDK",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"url": "https://github.com/jogold/cloudstructs.git",
|
|
@@ -26,30 +26,29 @@ kwargs = json.loads(
|
|
|
26
26
|
],
|
|
27
27
|
"package_data": {
|
|
28
28
|
"cloudstructs._jsii": [
|
|
29
|
-
"cloudstructs@0.
|
|
29
|
+
"cloudstructs@0.9.27.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"cloudstructs": [
|
|
32
32
|
"py.typed"
|
|
33
33
|
]
|
|
34
34
|
},
|
|
35
|
-
"python_requires": "~=3.
|
|
35
|
+
"python_requires": "~=3.8",
|
|
36
36
|
"install_requires": [
|
|
37
|
-
"aws-cdk-lib>=2.
|
|
38
|
-
"aws-cdk.aws-apigatewayv2-alpha>=2.1.0.a0, <3.0.0",
|
|
39
|
-
"aws-cdk.aws-apigatewayv2-integrations-alpha>=2.1.0.a0, <3.0.0",
|
|
37
|
+
"aws-cdk-lib>=2.133.0, <3.0.0",
|
|
40
38
|
"constructs>=10.0.5, <11.0.0",
|
|
41
|
-
"jsii>=1.
|
|
42
|
-
"publication>=0.0.3"
|
|
39
|
+
"jsii>=1.106.0, <2.0.0",
|
|
40
|
+
"publication>=0.0.3",
|
|
41
|
+
"typeguard>=2.13.3,<4.3.0"
|
|
43
42
|
],
|
|
44
43
|
"classifiers": [
|
|
45
44
|
"Intended Audience :: Developers",
|
|
46
45
|
"Operating System :: OS Independent",
|
|
47
46
|
"Programming Language :: JavaScript",
|
|
48
47
|
"Programming Language :: Python :: 3 :: Only",
|
|
49
|
-
"Programming Language :: Python :: 3.7",
|
|
50
48
|
"Programming Language :: Python :: 3.8",
|
|
51
49
|
"Programming Language :: Python :: 3.9",
|
|
52
50
|
"Programming Language :: Python :: 3.10",
|
|
51
|
+
"Programming Language :: Python :: 3.11",
|
|
53
52
|
"Typing :: Typed",
|
|
54
53
|
"Development Status :: 5 - Production/Stable",
|
|
55
54
|
"License :: OSI Approved"
|