cdk-mwaa 0.0.1__tar.gz → 0.0.3__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.
- {cdk_mwaa-0.0.1/src/cdk_mwaa.egg-info → cdk_mwaa-0.0.3}/PKG-INFO +5 -6
- {cdk_mwaa-0.0.1 → cdk_mwaa-0.0.3}/README.md +2 -2
- {cdk_mwaa-0.0.1 → cdk_mwaa-0.0.3}/pyproject.toml +1 -1
- {cdk_mwaa-0.0.1 → cdk_mwaa-0.0.3}/setup.py +4 -5
- {cdk_mwaa-0.0.1 → cdk_mwaa-0.0.3}/src/cdk_mwaa/__init__.py +15 -15
- {cdk_mwaa-0.0.1 → cdk_mwaa-0.0.3}/src/cdk_mwaa/_jsii/__init__.py +1 -1
- cdk_mwaa-0.0.3/src/cdk_mwaa/_jsii/cdk-mwaa@0.0.3.jsii.tgz +0 -0
- {cdk_mwaa-0.0.1 → cdk_mwaa-0.0.3/src/cdk_mwaa.egg-info}/PKG-INFO +5 -6
- {cdk_mwaa-0.0.1 → cdk_mwaa-0.0.3}/src/cdk_mwaa.egg-info/SOURCES.txt +1 -1
- {cdk_mwaa-0.0.1 → cdk_mwaa-0.0.3}/src/cdk_mwaa.egg-info/requires.txt +1 -1
- cdk_mwaa-0.0.1/src/cdk_mwaa/_jsii/cdk-mwaa@0.0.1.jsii.tgz +0 -0
- {cdk_mwaa-0.0.1 → cdk_mwaa-0.0.3}/LICENSE +0 -0
- {cdk_mwaa-0.0.1 → cdk_mwaa-0.0.3}/MANIFEST.in +0 -0
- {cdk_mwaa-0.0.1 → cdk_mwaa-0.0.3}/setup.cfg +0 -0
- {cdk_mwaa-0.0.1 → cdk_mwaa-0.0.3}/src/cdk_mwaa/py.typed +0 -0
- {cdk_mwaa-0.0.1 → cdk_mwaa-0.0.3}/src/cdk_mwaa.egg-info/dependency_links.txt +0 -0
- {cdk_mwaa-0.0.1 → cdk_mwaa-0.0.3}/src/cdk_mwaa.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: cdk-mwaa
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.3
|
4
4
|
Summary: cdk-mwaa
|
5
5
|
Home-page: https://github.com/hupe1980/cdk-mwaa.git
|
6
6
|
Author: hupe1980<frankhuebner1980@gmail.com>
|
@@ -10,19 +10,18 @@ Classifier: Intended Audience :: Developers
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
11
11
|
Classifier: Programming Language :: JavaScript
|
12
12
|
Classifier: Programming Language :: Python :: 3 :: Only
|
13
|
-
Classifier: Programming Language :: Python :: 3.8
|
14
13
|
Classifier: Programming Language :: Python :: 3.9
|
15
14
|
Classifier: Programming Language :: Python :: 3.10
|
16
15
|
Classifier: Programming Language :: Python :: 3.11
|
17
16
|
Classifier: Typing :: Typed
|
18
17
|
Classifier: Development Status :: 5 - Production/Stable
|
19
18
|
Classifier: License :: OSI Approved
|
20
|
-
Requires-Python: ~=3.
|
19
|
+
Requires-Python: ~=3.9
|
21
20
|
Description-Content-Type: text/markdown
|
22
21
|
License-File: LICENSE
|
23
22
|
Requires-Dist: aws-cdk-lib<3.0.0,>=2.182.0
|
24
23
|
Requires-Dist: constructs<11.0.0,>=10.0.5
|
25
|
-
Requires-Dist: jsii<2.0.0,>=1.
|
24
|
+
Requires-Dist: jsii<2.0.0,>=1.109.0
|
26
25
|
Requires-Dist: publication>=0.0.3
|
27
26
|
Requires-Dist: typeguard<4.3.0,>=2.13.3
|
28
27
|
|
@@ -64,7 +63,7 @@ const dagStorage = new mwaa.DagStorage(stack, 'MyMwaaDagStorage', {
|
|
64
63
|
});
|
65
64
|
|
66
65
|
new mwaa.Environment(stack, 'MyMwaaEnvironment', {
|
67
|
-
|
66
|
+
name: 'my-mwaa-environment',
|
68
67
|
dagStorage,
|
69
68
|
airflowVersion: '2.10.3',
|
70
69
|
sizing: mwaa.Sizing.mw1Micro(),
|
@@ -93,7 +92,7 @@ const dagStorage = new mwaa.DagStorage(stack, 'MyMwaaDagStorage', {
|
|
93
92
|
});
|
94
93
|
|
95
94
|
const environment = new mwaa.Environment(stack, 'MyMwaaEnvironment', {
|
96
|
-
|
95
|
+
name: 'my-mwaa-environment',
|
97
96
|
dagStorage,
|
98
97
|
airflowVersion: '2.10.3',
|
99
98
|
sizing: mwaa.Sizing.mw1Micro(),
|
@@ -36,7 +36,7 @@ const dagStorage = new mwaa.DagStorage(stack, 'MyMwaaDagStorage', {
|
|
36
36
|
});
|
37
37
|
|
38
38
|
new mwaa.Environment(stack, 'MyMwaaEnvironment', {
|
39
|
-
|
39
|
+
name: 'my-mwaa-environment',
|
40
40
|
dagStorage,
|
41
41
|
airflowVersion: '2.10.3',
|
42
42
|
sizing: mwaa.Sizing.mw1Micro(),
|
@@ -65,7 +65,7 @@ const dagStorage = new mwaa.DagStorage(stack, 'MyMwaaDagStorage', {
|
|
65
65
|
});
|
66
66
|
|
67
67
|
const environment = new mwaa.Environment(stack, 'MyMwaaEnvironment', {
|
68
|
-
|
68
|
+
name: 'my-mwaa-environment',
|
69
69
|
dagStorage,
|
70
70
|
airflowVersion: '2.10.3',
|
71
71
|
sizing: mwaa.Sizing.mw1Micro(),
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
5
5
|
"""
|
6
6
|
{
|
7
7
|
"name": "cdk-mwaa",
|
8
|
-
"version": "0.0.
|
8
|
+
"version": "0.0.3",
|
9
9
|
"description": "cdk-mwaa",
|
10
10
|
"license": "MIT",
|
11
11
|
"url": "https://github.com/hupe1980/cdk-mwaa.git",
|
@@ -26,17 +26,17 @@ kwargs = json.loads(
|
|
26
26
|
],
|
27
27
|
"package_data": {
|
28
28
|
"cdk_mwaa._jsii": [
|
29
|
-
"cdk-mwaa@0.0.
|
29
|
+
"cdk-mwaa@0.0.3.jsii.tgz"
|
30
30
|
],
|
31
31
|
"cdk_mwaa": [
|
32
32
|
"py.typed"
|
33
33
|
]
|
34
34
|
},
|
35
|
-
"python_requires": "~=3.
|
35
|
+
"python_requires": "~=3.9",
|
36
36
|
"install_requires": [
|
37
37
|
"aws-cdk-lib>=2.182.0, <3.0.0",
|
38
38
|
"constructs>=10.0.5, <11.0.0",
|
39
|
-
"jsii>=1.
|
39
|
+
"jsii>=1.109.0, <2.0.0",
|
40
40
|
"publication>=0.0.3",
|
41
41
|
"typeguard>=2.13.3,<4.3.0"
|
42
42
|
],
|
@@ -45,7 +45,6 @@ kwargs = json.loads(
|
|
45
45
|
"Operating System :: OS Independent",
|
46
46
|
"Programming Language :: JavaScript",
|
47
47
|
"Programming Language :: Python :: 3 :: Only",
|
48
|
-
"Programming Language :: Python :: 3.8",
|
49
48
|
"Programming Language :: Python :: 3.9",
|
50
49
|
"Programming Language :: Python :: 3.10",
|
51
50
|
"Programming Language :: Python :: 3.11",
|
@@ -37,7 +37,7 @@ const dagStorage = new mwaa.DagStorage(stack, 'MyMwaaDagStorage', {
|
|
37
37
|
});
|
38
38
|
|
39
39
|
new mwaa.Environment(stack, 'MyMwaaEnvironment', {
|
40
|
-
|
40
|
+
name: 'my-mwaa-environment',
|
41
41
|
dagStorage,
|
42
42
|
airflowVersion: '2.10.3',
|
43
43
|
sizing: mwaa.Sizing.mw1Micro(),
|
@@ -66,7 +66,7 @@ const dagStorage = new mwaa.DagStorage(stack, 'MyMwaaDagStorage', {
|
|
66
66
|
});
|
67
67
|
|
68
68
|
const environment = new mwaa.Environment(stack, 'MyMwaaEnvironment', {
|
69
|
-
|
69
|
+
name: 'my-mwaa-environment',
|
70
70
|
dagStorage,
|
71
71
|
airflowVersion: '2.10.3',
|
72
72
|
sizing: mwaa.Sizing.mw1Micro(),
|
@@ -547,7 +547,7 @@ class Environment(
|
|
547
547
|
*,
|
548
548
|
airflow_version: builtins.str,
|
549
549
|
dag_storage: DagStorage,
|
550
|
-
|
550
|
+
name: builtins.str,
|
551
551
|
sizing: "Sizing",
|
552
552
|
vpc: _aws_cdk_aws_ec2_ceddda9d.IVpc,
|
553
553
|
airflow_configuration_options: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
@@ -565,7 +565,7 @@ class Environment(
|
|
565
565
|
:param id: - The unique ID of the construct.
|
566
566
|
:param airflow_version:
|
567
567
|
:param dag_storage:
|
568
|
-
:param
|
568
|
+
:param name:
|
569
569
|
:param sizing:
|
570
570
|
:param vpc:
|
571
571
|
:param airflow_configuration_options:
|
@@ -584,7 +584,7 @@ class Environment(
|
|
584
584
|
props = EnvironmentProps(
|
585
585
|
airflow_version=airflow_version,
|
586
586
|
dag_storage=dag_storage,
|
587
|
-
|
587
|
+
name=name,
|
588
588
|
sizing=sizing,
|
589
589
|
vpc=vpc,
|
590
590
|
airflow_configuration_options=airflow_configuration_options,
|
@@ -740,7 +740,7 @@ class EnvironmentClass(enum.Enum):
|
|
740
740
|
name_mapping={
|
741
741
|
"airflow_version": "airflowVersion",
|
742
742
|
"dag_storage": "dagStorage",
|
743
|
-
"
|
743
|
+
"name": "name",
|
744
744
|
"sizing": "sizing",
|
745
745
|
"vpc": "vpc",
|
746
746
|
"airflow_configuration_options": "airflowConfigurationOptions",
|
@@ -759,7 +759,7 @@ class EnvironmentProps:
|
|
759
759
|
*,
|
760
760
|
airflow_version: builtins.str,
|
761
761
|
dag_storage: DagStorage,
|
762
|
-
|
762
|
+
name: builtins.str,
|
763
763
|
sizing: "Sizing",
|
764
764
|
vpc: _aws_cdk_aws_ec2_ceddda9d.IVpc,
|
765
765
|
airflow_configuration_options: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
@@ -775,7 +775,7 @@ class EnvironmentProps:
|
|
775
775
|
|
776
776
|
:param airflow_version:
|
777
777
|
:param dag_storage:
|
778
|
-
:param
|
778
|
+
:param name:
|
779
779
|
:param sizing:
|
780
780
|
:param vpc:
|
781
781
|
:param airflow_configuration_options:
|
@@ -793,7 +793,7 @@ class EnvironmentProps:
|
|
793
793
|
type_hints = typing.get_type_hints(_typecheckingstub__d58cfc6f1183850b5b51999d54a17bf62c6f7b5c3c75133b721818d02e12a9b8)
|
794
794
|
check_type(argname="argument airflow_version", value=airflow_version, expected_type=type_hints["airflow_version"])
|
795
795
|
check_type(argname="argument dag_storage", value=dag_storage, expected_type=type_hints["dag_storage"])
|
796
|
-
check_type(argname="argument
|
796
|
+
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
797
797
|
check_type(argname="argument sizing", value=sizing, expected_type=type_hints["sizing"])
|
798
798
|
check_type(argname="argument vpc", value=vpc, expected_type=type_hints["vpc"])
|
799
799
|
check_type(argname="argument airflow_configuration_options", value=airflow_configuration_options, expected_type=type_hints["airflow_configuration_options"])
|
@@ -807,7 +807,7 @@ class EnvironmentProps:
|
|
807
807
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
808
808
|
"airflow_version": airflow_version,
|
809
809
|
"dag_storage": dag_storage,
|
810
|
-
"
|
810
|
+
"name": name,
|
811
811
|
"sizing": sizing,
|
812
812
|
"vpc": vpc,
|
813
813
|
}
|
@@ -841,9 +841,9 @@ class EnvironmentProps:
|
|
841
841
|
return typing.cast(DagStorage, result)
|
842
842
|
|
843
843
|
@builtins.property
|
844
|
-
def
|
845
|
-
result = self._values.get("
|
846
|
-
assert result is not None, "Required property '
|
844
|
+
def name(self) -> builtins.str:
|
845
|
+
result = self._values.get("name")
|
846
|
+
assert result is not None, "Required property 'name' is missing"
|
847
847
|
return typing.cast(builtins.str, result)
|
848
848
|
|
849
849
|
@builtins.property
|
@@ -1838,7 +1838,7 @@ def _typecheckingstub__ebc587b767dfc724460675574ff2adf5d781edef0bcce6da7e68d7601
|
|
1838
1838
|
*,
|
1839
1839
|
airflow_version: builtins.str,
|
1840
1840
|
dag_storage: DagStorage,
|
1841
|
-
|
1841
|
+
name: builtins.str,
|
1842
1842
|
sizing: Sizing,
|
1843
1843
|
vpc: _aws_cdk_aws_ec2_ceddda9d.IVpc,
|
1844
1844
|
airflow_configuration_options: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
@@ -1870,7 +1870,7 @@ def _typecheckingstub__d58cfc6f1183850b5b51999d54a17bf62c6f7b5c3c75133b721818d02
|
|
1870
1870
|
*,
|
1871
1871
|
airflow_version: builtins.str,
|
1872
1872
|
dag_storage: DagStorage,
|
1873
|
-
|
1873
|
+
name: builtins.str,
|
1874
1874
|
sizing: Sizing,
|
1875
1875
|
vpc: _aws_cdk_aws_ec2_ceddda9d.IVpc,
|
1876
1876
|
airflow_configuration_options: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: cdk-mwaa
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.3
|
4
4
|
Summary: cdk-mwaa
|
5
5
|
Home-page: https://github.com/hupe1980/cdk-mwaa.git
|
6
6
|
Author: hupe1980<frankhuebner1980@gmail.com>
|
@@ -10,19 +10,18 @@ Classifier: Intended Audience :: Developers
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
11
11
|
Classifier: Programming Language :: JavaScript
|
12
12
|
Classifier: Programming Language :: Python :: 3 :: Only
|
13
|
-
Classifier: Programming Language :: Python :: 3.8
|
14
13
|
Classifier: Programming Language :: Python :: 3.9
|
15
14
|
Classifier: Programming Language :: Python :: 3.10
|
16
15
|
Classifier: Programming Language :: Python :: 3.11
|
17
16
|
Classifier: Typing :: Typed
|
18
17
|
Classifier: Development Status :: 5 - Production/Stable
|
19
18
|
Classifier: License :: OSI Approved
|
20
|
-
Requires-Python: ~=3.
|
19
|
+
Requires-Python: ~=3.9
|
21
20
|
Description-Content-Type: text/markdown
|
22
21
|
License-File: LICENSE
|
23
22
|
Requires-Dist: aws-cdk-lib<3.0.0,>=2.182.0
|
24
23
|
Requires-Dist: constructs<11.0.0,>=10.0.5
|
25
|
-
Requires-Dist: jsii<2.0.0,>=1.
|
24
|
+
Requires-Dist: jsii<2.0.0,>=1.109.0
|
26
25
|
Requires-Dist: publication>=0.0.3
|
27
26
|
Requires-Dist: typeguard<4.3.0,>=2.13.3
|
28
27
|
|
@@ -64,7 +63,7 @@ const dagStorage = new mwaa.DagStorage(stack, 'MyMwaaDagStorage', {
|
|
64
63
|
});
|
65
64
|
|
66
65
|
new mwaa.Environment(stack, 'MyMwaaEnvironment', {
|
67
|
-
|
66
|
+
name: 'my-mwaa-environment',
|
68
67
|
dagStorage,
|
69
68
|
airflowVersion: '2.10.3',
|
70
69
|
sizing: mwaa.Sizing.mw1Micro(),
|
@@ -93,7 +92,7 @@ const dagStorage = new mwaa.DagStorage(stack, 'MyMwaaDagStorage', {
|
|
93
92
|
});
|
94
93
|
|
95
94
|
const environment = new mwaa.Environment(stack, 'MyMwaaEnvironment', {
|
96
|
-
|
95
|
+
name: 'my-mwaa-environment',
|
97
96
|
dagStorage,
|
98
97
|
airflowVersion: '2.10.3',
|
99
98
|
sizing: mwaa.Sizing.mw1Micro(),
|
Binary file
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|