jjrawlins-cdk-ami-builder 0.0.6__tar.gz → 0.0.7__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.
Potentially problematic release.
This version of jjrawlins-cdk-ami-builder might be problematic. Click here for more details.
- {jjrawlins-cdk-ami-builder-0.0.6/src/jjrawlins_cdk_ami_builder.egg-info → jjrawlins_cdk_ami_builder-0.0.7}/PKG-INFO +7 -3
- {jjrawlins-cdk-ami-builder-0.0.6 → jjrawlins_cdk_ami_builder-0.0.7}/pyproject.toml +2 -2
- {jjrawlins-cdk-ami-builder-0.0.6 → jjrawlins_cdk_ami_builder-0.0.7}/setup.py +5 -6
- {jjrawlins-cdk-ami-builder-0.0.6 → jjrawlins_cdk_ami_builder-0.0.7}/src/jjrawlins_cdk_ami_builder/__init__.py +45 -30
- jjrawlins_cdk_ami_builder-0.0.7/src/jjrawlins_cdk_ami_builder/_jsii/__init__.py +45 -0
- jjrawlins-cdk-ami-builder-0.0.6/src/jjrawlins_cdk_ami_builder/_jsii/cdk-ami-builder@0.0.6.jsii.tgz → jjrawlins_cdk_ami_builder-0.0.7/src/jjrawlins_cdk_ami_builder/_jsii/cdk-ami-builder@0.0.7.jsii.tgz +0 -0
- {jjrawlins-cdk-ami-builder-0.0.6 → jjrawlins_cdk_ami_builder-0.0.7/src/jjrawlins_cdk_ami_builder.egg-info}/PKG-INFO +7 -3
- {jjrawlins-cdk-ami-builder-0.0.6 → jjrawlins_cdk_ami_builder-0.0.7}/src/jjrawlins_cdk_ami_builder.egg-info/SOURCES.txt +1 -1
- {jjrawlins-cdk-ami-builder-0.0.6 → jjrawlins_cdk_ami_builder-0.0.7}/src/jjrawlins_cdk_ami_builder.egg-info/requires.txt +2 -2
- jjrawlins-cdk-ami-builder-0.0.6/src/jjrawlins_cdk_ami_builder/_jsii/__init__.py +0 -30
- {jjrawlins-cdk-ami-builder-0.0.6 → jjrawlins_cdk_ami_builder-0.0.7}/LICENSE +0 -0
- {jjrawlins-cdk-ami-builder-0.0.6 → jjrawlins_cdk_ami_builder-0.0.7}/MANIFEST.in +0 -0
- {jjrawlins-cdk-ami-builder-0.0.6 → jjrawlins_cdk_ami_builder-0.0.7}/README.md +0 -0
- {jjrawlins-cdk-ami-builder-0.0.6 → jjrawlins_cdk_ami_builder-0.0.7}/setup.cfg +0 -0
- {jjrawlins-cdk-ami-builder-0.0.6 → jjrawlins_cdk_ami_builder-0.0.7}/src/jjrawlins_cdk_ami_builder/py.typed +0 -0
- {jjrawlins-cdk-ami-builder-0.0.6 → jjrawlins_cdk_ami_builder-0.0.7}/src/jjrawlins_cdk_ami_builder.egg-info/dependency_links.txt +0 -0
- {jjrawlins-cdk-ami-builder-0.0.6 → jjrawlins_cdk_ami_builder-0.0.7}/src/jjrawlins_cdk_ami_builder.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: jjrawlins-cdk-ami-builder
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.7
|
|
4
4
|
Summary: Creates an EC2 AMI using an Image Builder Pipeline and returns the AMI ID.
|
|
5
5
|
Home-page: https://github.com/JaysonRawlins/cdk-ami-builder.git
|
|
6
6
|
Author: Jayson Rawlins<jayson.rawlins@gmail.com>
|
|
@@ -10,16 +10,20 @@ 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
|
|
22
|
+
Requires-Dist: aws-cdk-lib<3.0.0,>=2.150.0
|
|
23
|
+
Requires-Dist: constructs<11.0.0,>=10.4.2
|
|
24
|
+
Requires-Dist: jsii<2.0.0,>=1.114.1
|
|
25
|
+
Requires-Dist: publication>=0.0.3
|
|
26
|
+
Requires-Dist: typeguard<4.3.0,>=2.13.3
|
|
23
27
|
|
|
24
28
|
# ImagePipeline Construct for AWS CDK
|
|
25
29
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
[build-system]
|
|
2
|
-
requires = ["setuptools~=
|
|
2
|
+
requires = ["setuptools~=75.3.2", "build~=1.3.0"]
|
|
3
3
|
build-backend = "setuptools.build_meta"
|
|
4
4
|
|
|
5
5
|
[tool.pyright]
|
|
6
6
|
defineConstant = { DEBUG = true }
|
|
7
|
-
pythonVersion = "3.
|
|
7
|
+
pythonVersion = "3.9"
|
|
8
8
|
pythonPlatform = "All"
|
|
9
9
|
reportSelfClsParameterName = false
|
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "jjrawlins-cdk-ami-builder",
|
|
8
|
-
"version": "0.0.
|
|
8
|
+
"version": "0.0.7",
|
|
9
9
|
"description": "Creates an EC2 AMI using an Image Builder Pipeline and returns the AMI ID.",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"url": "https://github.com/JaysonRawlins/cdk-ami-builder.git",
|
|
@@ -26,26 +26,25 @@ kwargs = json.loads(
|
|
|
26
26
|
],
|
|
27
27
|
"package_data": {
|
|
28
28
|
"jjrawlins_cdk_ami_builder._jsii": [
|
|
29
|
-
"cdk-ami-builder@0.0.
|
|
29
|
+
"cdk-ami-builder@0.0.7.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"jjrawlins_cdk_ami_builder": [
|
|
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.150.0, <3.0.0",
|
|
38
38
|
"constructs>=10.4.2, <11.0.0",
|
|
39
|
-
"jsii>=1.
|
|
39
|
+
"jsii>=1.114.1, <2.0.0",
|
|
40
40
|
"publication>=0.0.3",
|
|
41
|
-
"typeguard
|
|
41
|
+
"typeguard>=2.13.3,<4.3.0"
|
|
42
42
|
],
|
|
43
43
|
"classifiers": [
|
|
44
44
|
"Intended Audience :: Developers",
|
|
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",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
'''
|
|
1
|
+
r'''
|
|
2
2
|
# ImagePipeline Construct for AWS CDK
|
|
3
3
|
|
|
4
4
|
## Overview
|
|
@@ -174,7 +174,22 @@ import jsii
|
|
|
174
174
|
import publication
|
|
175
175
|
import typing_extensions
|
|
176
176
|
|
|
177
|
-
|
|
177
|
+
import typeguard
|
|
178
|
+
from importlib.metadata import version as _metadata_package_version
|
|
179
|
+
TYPEGUARD_MAJOR_VERSION = int(_metadata_package_version('typeguard').split('.')[0])
|
|
180
|
+
|
|
181
|
+
def check_type(argname: str, value: object, expected_type: typing.Any) -> typing.Any:
|
|
182
|
+
if TYPEGUARD_MAJOR_VERSION <= 2:
|
|
183
|
+
return typeguard.check_type(argname=argname, value=value, expected_type=expected_type) # type:ignore
|
|
184
|
+
else:
|
|
185
|
+
if isinstance(value, jsii._reference_map.InterfaceDynamicProxy): # pyright: ignore [reportAttributeAccessIssue]
|
|
186
|
+
pass
|
|
187
|
+
else:
|
|
188
|
+
if TYPEGUARD_MAJOR_VERSION == 3:
|
|
189
|
+
typeguard.config.collection_check_strategy = typeguard.CollectionCheckStrategy.ALL_ITEMS # type:ignore
|
|
190
|
+
typeguard.check_type(value=value, expected_type=expected_type) # type:ignore
|
|
191
|
+
else:
|
|
192
|
+
typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
|
|
178
193
|
|
|
179
194
|
from ._jsii import *
|
|
180
195
|
|
|
@@ -1304,7 +1319,7 @@ class _IActionCommandsProxy:
|
|
|
1304
1319
|
if __debug__:
|
|
1305
1320
|
type_hints = typing.get_type_hints(_typecheckingstub__10f5fea34bd77d6054ed796f746dbb227d06d5b5d758e1eb35055430d0518bdf)
|
|
1306
1321
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1307
|
-
jsii.set(self, "commands", value)
|
|
1322
|
+
jsii.set(self, "commands", value) # pyright: ignore[reportArgumentType]
|
|
1308
1323
|
|
|
1309
1324
|
# Adding a "__jsii_proxy_class__(): typing.Type" function to the interface
|
|
1310
1325
|
typing.cast(typing.Any, IActionCommands).__jsii_proxy_class__ = lambda : _IActionCommandsProxy
|
|
@@ -1366,7 +1381,7 @@ class _IComponentDocumentProxy:
|
|
|
1366
1381
|
if __debug__:
|
|
1367
1382
|
type_hints = typing.get_type_hints(_typecheckingstub__624a7bb48f946403e3ab1b4ae0dbb8031caf7b944311ff9c993a6126ef5e3287)
|
|
1368
1383
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1369
|
-
jsii.set(self, "phases", value)
|
|
1384
|
+
jsii.set(self, "phases", value) # pyright: ignore[reportArgumentType]
|
|
1370
1385
|
|
|
1371
1386
|
@builtins.property
|
|
1372
1387
|
@jsii.member(jsii_name="description")
|
|
@@ -1378,7 +1393,7 @@ class _IComponentDocumentProxy:
|
|
|
1378
1393
|
if __debug__:
|
|
1379
1394
|
type_hints = typing.get_type_hints(_typecheckingstub__de97257fb85051b7e1a2f01dbece22036f46f0b683a3d5e9a4169541ec11b5e1)
|
|
1380
1395
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1381
|
-
jsii.set(self, "description", value)
|
|
1396
|
+
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
1382
1397
|
|
|
1383
1398
|
@builtins.property
|
|
1384
1399
|
@jsii.member(jsii_name="name")
|
|
@@ -1390,7 +1405,7 @@ class _IComponentDocumentProxy:
|
|
|
1390
1405
|
if __debug__:
|
|
1391
1406
|
type_hints = typing.get_type_hints(_typecheckingstub__70cb5dabf5f8f2356d27488542eac48b55efd3d699b5e052701945bf99619aca)
|
|
1392
1407
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1393
|
-
jsii.set(self, "name", value)
|
|
1408
|
+
jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
|
|
1394
1409
|
|
|
1395
1410
|
@builtins.property
|
|
1396
1411
|
@jsii.member(jsii_name="schemaVersion")
|
|
@@ -1402,7 +1417,7 @@ class _IComponentDocumentProxy:
|
|
|
1402
1417
|
if __debug__:
|
|
1403
1418
|
type_hints = typing.get_type_hints(_typecheckingstub__efffe851a3d571fabc89bb8f1e37d1a4ec032e1342122b5ab489204a1e44f6b8)
|
|
1404
1419
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1405
|
-
jsii.set(self, "schemaVersion", value)
|
|
1420
|
+
jsii.set(self, "schemaVersion", value) # pyright: ignore[reportArgumentType]
|
|
1406
1421
|
|
|
1407
1422
|
# Adding a "__jsii_proxy_class__(): typing.Type" function to the interface
|
|
1408
1423
|
typing.cast(typing.Any, IComponentDocument).__jsii_proxy_class__ = lambda : _IComponentDocumentProxy
|
|
@@ -1496,7 +1511,7 @@ class _IComponentPropsProxy:
|
|
|
1496
1511
|
if __debug__:
|
|
1497
1512
|
type_hints = typing.get_type_hints(_typecheckingstub__b0ad2caab3355f4838637405d4f26c75ee1cce783903c32551e643abe82659e8)
|
|
1498
1513
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1499
|
-
jsii.set(self, "componentDocument", value)
|
|
1514
|
+
jsii.set(self, "componentDocument", value) # pyright: ignore[reportArgumentType]
|
|
1500
1515
|
|
|
1501
1516
|
@builtins.property
|
|
1502
1517
|
@jsii.member(jsii_name="componentVersion")
|
|
@@ -1508,7 +1523,7 @@ class _IComponentPropsProxy:
|
|
|
1508
1523
|
if __debug__:
|
|
1509
1524
|
type_hints = typing.get_type_hints(_typecheckingstub__0bce0f8dc96228f8efb876e5919d9c2c1ee92c26a24d14eca94a50a06cd4926f)
|
|
1510
1525
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1511
|
-
jsii.set(self, "componentVersion", value)
|
|
1526
|
+
jsii.set(self, "componentVersion", value) # pyright: ignore[reportArgumentType]
|
|
1512
1527
|
|
|
1513
1528
|
@builtins.property
|
|
1514
1529
|
@jsii.member(jsii_name="description")
|
|
@@ -1520,7 +1535,7 @@ class _IComponentPropsProxy:
|
|
|
1520
1535
|
if __debug__:
|
|
1521
1536
|
type_hints = typing.get_type_hints(_typecheckingstub__c0c7dec14ffd9bf1a1a114795b123ba90e9b80ca69c21fdaa3f475ddf85d78b1)
|
|
1522
1537
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1523
|
-
jsii.set(self, "description", value)
|
|
1538
|
+
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
1524
1539
|
|
|
1525
1540
|
@builtins.property
|
|
1526
1541
|
@jsii.member(jsii_name="name")
|
|
@@ -1532,7 +1547,7 @@ class _IComponentPropsProxy:
|
|
|
1532
1547
|
if __debug__:
|
|
1533
1548
|
type_hints = typing.get_type_hints(_typecheckingstub__72232f5835e0beda072a77bad77970be5491d2709e66ba2ca97fd7bc9db71006)
|
|
1534
1549
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1535
|
-
jsii.set(self, "name", value)
|
|
1550
|
+
jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
|
|
1536
1551
|
|
|
1537
1552
|
@builtins.property
|
|
1538
1553
|
@jsii.member(jsii_name="parameters")
|
|
@@ -1549,7 +1564,7 @@ class _IComponentPropsProxy:
|
|
|
1549
1564
|
if __debug__:
|
|
1550
1565
|
type_hints = typing.get_type_hints(_typecheckingstub__86f16715a17e21602912ba9d4533eca197b8693c30d16442cfab62b7ea33370d)
|
|
1551
1566
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1552
|
-
jsii.set(self, "parameters", value)
|
|
1567
|
+
jsii.set(self, "parameters", value) # pyright: ignore[reportArgumentType]
|
|
1553
1568
|
|
|
1554
1569
|
@builtins.property
|
|
1555
1570
|
@jsii.member(jsii_name="platform")
|
|
@@ -1561,7 +1576,7 @@ class _IComponentPropsProxy:
|
|
|
1561
1576
|
if __debug__:
|
|
1562
1577
|
type_hints = typing.get_type_hints(_typecheckingstub__a23ae80ba76ecddd4143609bb122f336b79f3ab095cc2c2c5d4d1385ef62693a)
|
|
1563
1578
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1564
|
-
jsii.set(self, "platform", value)
|
|
1579
|
+
jsii.set(self, "platform", value) # pyright: ignore[reportArgumentType]
|
|
1565
1580
|
|
|
1566
1581
|
@builtins.property
|
|
1567
1582
|
@jsii.member(jsii_name="schemaVersion")
|
|
@@ -1573,7 +1588,7 @@ class _IComponentPropsProxy:
|
|
|
1573
1588
|
if __debug__:
|
|
1574
1589
|
type_hints = typing.get_type_hints(_typecheckingstub__9973b3d6b077a057d59e04c03013dce9d7ed43148817bf0433987b401da20438)
|
|
1575
1590
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1576
|
-
jsii.set(self, "schemaVersion", value)
|
|
1591
|
+
jsii.set(self, "schemaVersion", value) # pyright: ignore[reportArgumentType]
|
|
1577
1592
|
|
|
1578
1593
|
# Adding a "__jsii_proxy_class__(): typing.Type" function to the interface
|
|
1579
1594
|
typing.cast(typing.Any, IComponentProps).__jsii_proxy_class__ = lambda : _IComponentPropsProxy
|
|
@@ -1658,7 +1673,7 @@ class _IEbsParametersProxy:
|
|
|
1658
1673
|
if __debug__:
|
|
1659
1674
|
type_hints = typing.get_type_hints(_typecheckingstub__0e5d81c411808594f27bf71993213cf332e7b7bc72d420381bada3679eeea8ec)
|
|
1660
1675
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1661
|
-
jsii.set(self, "volumeSize", value)
|
|
1676
|
+
jsii.set(self, "volumeSize", value) # pyright: ignore[reportArgumentType]
|
|
1662
1677
|
|
|
1663
1678
|
@builtins.property
|
|
1664
1679
|
@jsii.member(jsii_name="deleteOnTermination")
|
|
@@ -1674,7 +1689,7 @@ class _IEbsParametersProxy:
|
|
|
1674
1689
|
if __debug__:
|
|
1675
1690
|
type_hints = typing.get_type_hints(_typecheckingstub__b540c011e8f4a3a07534f2b6ce7d7f97f2c406cb2e6c3fe31235455d998f6241)
|
|
1676
1691
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1677
|
-
jsii.set(self, "deleteOnTermination", value)
|
|
1692
|
+
jsii.set(self, "deleteOnTermination", value) # pyright: ignore[reportArgumentType]
|
|
1678
1693
|
|
|
1679
1694
|
@builtins.property
|
|
1680
1695
|
@jsii.member(jsii_name="encrypted")
|
|
@@ -1690,7 +1705,7 @@ class _IEbsParametersProxy:
|
|
|
1690
1705
|
if __debug__:
|
|
1691
1706
|
type_hints = typing.get_type_hints(_typecheckingstub__7e13b146751f14eee56e18d77364984f0f27022180ae37bc0ded34faef00f0c4)
|
|
1692
1707
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1693
|
-
jsii.set(self, "encrypted", value)
|
|
1708
|
+
jsii.set(self, "encrypted", value) # pyright: ignore[reportArgumentType]
|
|
1694
1709
|
|
|
1695
1710
|
@builtins.property
|
|
1696
1711
|
@jsii.member(jsii_name="kmsKeyId")
|
|
@@ -1706,7 +1721,7 @@ class _IEbsParametersProxy:
|
|
|
1706
1721
|
if __debug__:
|
|
1707
1722
|
type_hints = typing.get_type_hints(_typecheckingstub__c302f146869b52368ce6de4d6f01976b8eca3e9d54f8efbbffe44cf8b19d0869)
|
|
1708
1723
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1709
|
-
jsii.set(self, "kmsKeyId", value)
|
|
1724
|
+
jsii.set(self, "kmsKeyId", value) # pyright: ignore[reportArgumentType]
|
|
1710
1725
|
|
|
1711
1726
|
@builtins.property
|
|
1712
1727
|
@jsii.member(jsii_name="volumeType")
|
|
@@ -1722,7 +1737,7 @@ class _IEbsParametersProxy:
|
|
|
1722
1737
|
if __debug__:
|
|
1723
1738
|
type_hints = typing.get_type_hints(_typecheckingstub__e81a510a2a024c038328cbad4402309e14a7833b607324f360373866e250b3f7)
|
|
1724
1739
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1725
|
-
jsii.set(self, "volumeType", value)
|
|
1740
|
+
jsii.set(self, "volumeType", value) # pyright: ignore[reportArgumentType]
|
|
1726
1741
|
|
|
1727
1742
|
# Adding a "__jsii_proxy_class__(): typing.Type" function to the interface
|
|
1728
1743
|
typing.cast(typing.Any, IEbsParameters).__jsii_proxy_class__ = lambda : _IEbsParametersProxy
|
|
@@ -1771,7 +1786,7 @@ class _IInputParameterProxy:
|
|
|
1771
1786
|
if __debug__:
|
|
1772
1787
|
type_hints = typing.get_type_hints(_typecheckingstub__aaf310c2928dde39cb8af7991b84c39540130f8d881fe6005d7eab25d2d118c0)
|
|
1773
1788
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1774
|
-
jsii.set(self, "default", value)
|
|
1789
|
+
jsii.set(self, "default", value) # pyright: ignore[reportArgumentType]
|
|
1775
1790
|
|
|
1776
1791
|
@builtins.property
|
|
1777
1792
|
@jsii.member(jsii_name="description")
|
|
@@ -1783,7 +1798,7 @@ class _IInputParameterProxy:
|
|
|
1783
1798
|
if __debug__:
|
|
1784
1799
|
type_hints = typing.get_type_hints(_typecheckingstub__4560f5bbdf32517a539c1af9e6599ca9195835a850a0f07ddfc0dcdf3641b1f7)
|
|
1785
1800
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1786
|
-
jsii.set(self, "description", value)
|
|
1801
|
+
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
1787
1802
|
|
|
1788
1803
|
@builtins.property
|
|
1789
1804
|
@jsii.member(jsii_name="type")
|
|
@@ -1795,7 +1810,7 @@ class _IInputParameterProxy:
|
|
|
1795
1810
|
if __debug__:
|
|
1796
1811
|
type_hints = typing.get_type_hints(_typecheckingstub__8fb09906d4a1b21165f080811572771be07edead36213cbdddbcae3f59ca4fe7)
|
|
1797
1812
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1798
|
-
jsii.set(self, "type", value)
|
|
1813
|
+
jsii.set(self, "type", value) # pyright: ignore[reportArgumentType]
|
|
1799
1814
|
|
|
1800
1815
|
# Adding a "__jsii_proxy_class__(): typing.Type" function to the interface
|
|
1801
1816
|
typing.cast(typing.Any, IInputParameter).__jsii_proxy_class__ = lambda : _IInputParameterProxy
|
|
@@ -1839,7 +1854,7 @@ class _IPhasesProxy:
|
|
|
1839
1854
|
if __debug__:
|
|
1840
1855
|
type_hints = typing.get_type_hints(_typecheckingstub__44eb356dcf22fafae58586b67e463188c1ceb5872e7d4700b983131d9fa722c2)
|
|
1841
1856
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1842
|
-
jsii.set(self, "name", value)
|
|
1857
|
+
jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
|
|
1843
1858
|
|
|
1844
1859
|
@builtins.property
|
|
1845
1860
|
@jsii.member(jsii_name="steps")
|
|
@@ -1851,7 +1866,7 @@ class _IPhasesProxy:
|
|
|
1851
1866
|
if __debug__:
|
|
1852
1867
|
type_hints = typing.get_type_hints(_typecheckingstub__df462b42f744b117b0586075ca023a73546818bc12bda3af473d5cded5a14453)
|
|
1853
1868
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1854
|
-
jsii.set(self, "steps", value)
|
|
1869
|
+
jsii.set(self, "steps", value) # pyright: ignore[reportArgumentType]
|
|
1855
1870
|
|
|
1856
1871
|
# Adding a "__jsii_proxy_class__(): typing.Type" function to the interface
|
|
1857
1872
|
typing.cast(typing.Any, IPhases).__jsii_proxy_class__ = lambda : _IPhasesProxy
|
|
@@ -1900,7 +1915,7 @@ class _IStepCommandsProxy:
|
|
|
1900
1915
|
if __debug__:
|
|
1901
1916
|
type_hints = typing.get_type_hints(_typecheckingstub__d2a55181a699ecdb46fd277bb5d051f1e9f4433e27639332395478ed06c7bada)
|
|
1902
1917
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1903
|
-
jsii.set(self, "action", value)
|
|
1918
|
+
jsii.set(self, "action", value) # pyright: ignore[reportArgumentType]
|
|
1904
1919
|
|
|
1905
1920
|
@builtins.property
|
|
1906
1921
|
@jsii.member(jsii_name="name")
|
|
@@ -1912,7 +1927,7 @@ class _IStepCommandsProxy:
|
|
|
1912
1927
|
if __debug__:
|
|
1913
1928
|
type_hints = typing.get_type_hints(_typecheckingstub__c7fd2c10de441da316399b8d67ef9fe6302063110bab78de675bf72c8d330cd5)
|
|
1914
1929
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1915
|
-
jsii.set(self, "name", value)
|
|
1930
|
+
jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
|
|
1916
1931
|
|
|
1917
1932
|
@builtins.property
|
|
1918
1933
|
@jsii.member(jsii_name="inputs")
|
|
@@ -1924,7 +1939,7 @@ class _IStepCommandsProxy:
|
|
|
1924
1939
|
if __debug__:
|
|
1925
1940
|
type_hints = typing.get_type_hints(_typecheckingstub__31f544d77b7639a100d3ef21a2dccb6780ad4865ad30dc0927169fa6f58ba844)
|
|
1926
1941
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1927
|
-
jsii.set(self, "inputs", value)
|
|
1942
|
+
jsii.set(self, "inputs", value) # pyright: ignore[reportArgumentType]
|
|
1928
1943
|
|
|
1929
1944
|
# Adding a "__jsii_proxy_class__(): typing.Type" function to the interface
|
|
1930
1945
|
typing.cast(typing.Any, IStepCommands).__jsii_proxy_class__ = lambda : _IStepCommandsProxy
|
|
@@ -2027,7 +2042,7 @@ class ImagePipeline(
|
|
|
2027
2042
|
if __debug__:
|
|
2028
2043
|
type_hints = typing.get_type_hints(_typecheckingstub__3caaa0e87efd31863d50ae14b716d1c26963b70e3c7cb6faf0382a7a992902db)
|
|
2029
2044
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2030
|
-
jsii.set(self, "imageId", value)
|
|
2045
|
+
jsii.set(self, "imageId", value) # pyright: ignore[reportArgumentType]
|
|
2031
2046
|
|
|
2032
2047
|
@builtins.property
|
|
2033
2048
|
@jsii.member(jsii_name="imagePipelineArn")
|
|
@@ -2039,7 +2054,7 @@ class ImagePipeline(
|
|
|
2039
2054
|
if __debug__:
|
|
2040
2055
|
type_hints = typing.get_type_hints(_typecheckingstub__8f26b6fa7ec32bfa71a51e8decd4140be699fde137d1b00acb1efb9403c33617)
|
|
2041
2056
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2042
|
-
jsii.set(self, "imagePipelineArn", value)
|
|
2057
|
+
jsii.set(self, "imagePipelineArn", value) # pyright: ignore[reportArgumentType]
|
|
2043
2058
|
|
|
2044
2059
|
@builtins.property
|
|
2045
2060
|
@jsii.member(jsii_name="imageRecipeComponents")
|
|
@@ -2056,7 +2071,7 @@ class ImagePipeline(
|
|
|
2056
2071
|
if __debug__:
|
|
2057
2072
|
type_hints = typing.get_type_hints(_typecheckingstub__eeb1c8226fc2b10c398b3b6c92875d7937e349500e49aef10cfda8c99a39abca)
|
|
2058
2073
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2059
|
-
jsii.set(self, "imageRecipeComponents", value)
|
|
2074
|
+
jsii.set(self, "imageRecipeComponents", value) # pyright: ignore[reportArgumentType]
|
|
2060
2075
|
|
|
2061
2076
|
|
|
2062
2077
|
@jsii.data_type(
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
from pkgutil import extend_path
|
|
2
|
+
__path__ = extend_path(__path__, __name__)
|
|
3
|
+
|
|
4
|
+
import abc
|
|
5
|
+
import builtins
|
|
6
|
+
import datetime
|
|
7
|
+
import enum
|
|
8
|
+
import typing
|
|
9
|
+
|
|
10
|
+
import jsii
|
|
11
|
+
import publication
|
|
12
|
+
import typing_extensions
|
|
13
|
+
|
|
14
|
+
import typeguard
|
|
15
|
+
from importlib.metadata import version as _metadata_package_version
|
|
16
|
+
TYPEGUARD_MAJOR_VERSION = int(_metadata_package_version('typeguard').split('.')[0])
|
|
17
|
+
|
|
18
|
+
def check_type(argname: str, value: object, expected_type: typing.Any) -> typing.Any:
|
|
19
|
+
if TYPEGUARD_MAJOR_VERSION <= 2:
|
|
20
|
+
return typeguard.check_type(argname=argname, value=value, expected_type=expected_type) # type:ignore
|
|
21
|
+
else:
|
|
22
|
+
if isinstance(value, jsii._reference_map.InterfaceDynamicProxy): # pyright: ignore [reportAttributeAccessIssue]
|
|
23
|
+
pass
|
|
24
|
+
else:
|
|
25
|
+
if TYPEGUARD_MAJOR_VERSION == 3:
|
|
26
|
+
typeguard.config.collection_check_strategy = typeguard.CollectionCheckStrategy.ALL_ITEMS # type:ignore
|
|
27
|
+
typeguard.check_type(value=value, expected_type=expected_type) # type:ignore
|
|
28
|
+
else:
|
|
29
|
+
typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
|
|
30
|
+
|
|
31
|
+
import aws_cdk._jsii
|
|
32
|
+
import constructs._jsii
|
|
33
|
+
|
|
34
|
+
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
35
|
+
"@jjrawlins/cdk-ami-builder",
|
|
36
|
+
"0.0.7",
|
|
37
|
+
__name__[0:-6],
|
|
38
|
+
"cdk-ami-builder@0.0.7.jsii.tgz",
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
__all__ = [
|
|
42
|
+
"__jsii_assembly__",
|
|
43
|
+
]
|
|
44
|
+
|
|
45
|
+
publication.publish()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: jjrawlins-cdk-ami-builder
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.7
|
|
4
4
|
Summary: Creates an EC2 AMI using an Image Builder Pipeline and returns the AMI ID.
|
|
5
5
|
Home-page: https://github.com/JaysonRawlins/cdk-ami-builder.git
|
|
6
6
|
Author: Jayson Rawlins<jayson.rawlins@gmail.com>
|
|
@@ -10,16 +10,20 @@ 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
|
|
22
|
+
Requires-Dist: aws-cdk-lib<3.0.0,>=2.150.0
|
|
23
|
+
Requires-Dist: constructs<11.0.0,>=10.4.2
|
|
24
|
+
Requires-Dist: jsii<2.0.0,>=1.114.1
|
|
25
|
+
Requires-Dist: publication>=0.0.3
|
|
26
|
+
Requires-Dist: typeguard<4.3.0,>=2.13.3
|
|
23
27
|
|
|
24
28
|
# ImagePipeline Construct for AWS CDK
|
|
25
29
|
|
|
@@ -11,4 +11,4 @@ src/jjrawlins_cdk_ami_builder.egg-info/dependency_links.txt
|
|
|
11
11
|
src/jjrawlins_cdk_ami_builder.egg-info/requires.txt
|
|
12
12
|
src/jjrawlins_cdk_ami_builder.egg-info/top_level.txt
|
|
13
13
|
src/jjrawlins_cdk_ami_builder/_jsii/__init__.py
|
|
14
|
-
src/jjrawlins_cdk_ami_builder/_jsii/cdk-ami-builder@0.0.
|
|
14
|
+
src/jjrawlins_cdk_ami_builder/_jsii/cdk-ami-builder@0.0.7.jsii.tgz
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
from pkgutil import extend_path
|
|
2
|
-
__path__ = extend_path(__path__, __name__)
|
|
3
|
-
|
|
4
|
-
import abc
|
|
5
|
-
import builtins
|
|
6
|
-
import datetime
|
|
7
|
-
import enum
|
|
8
|
-
import typing
|
|
9
|
-
|
|
10
|
-
import jsii
|
|
11
|
-
import publication
|
|
12
|
-
import typing_extensions
|
|
13
|
-
|
|
14
|
-
from typeguard import check_type
|
|
15
|
-
|
|
16
|
-
import aws_cdk._jsii
|
|
17
|
-
import constructs._jsii
|
|
18
|
-
|
|
19
|
-
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
20
|
-
"@jjrawlins/cdk-ami-builder",
|
|
21
|
-
"0.0.6",
|
|
22
|
-
__name__[0:-6],
|
|
23
|
-
"cdk-ami-builder@0.0.6.jsii.tgz",
|
|
24
|
-
)
|
|
25
|
-
|
|
26
|
-
__all__ = [
|
|
27
|
-
"__jsii_assembly__",
|
|
28
|
-
]
|
|
29
|
-
|
|
30
|
-
publication.publish()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|