aws-cdk.cx-api 2.139.1__tar.gz → 2.141.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.
Potentially problematic release.
This version of aws-cdk.cx-api might be problematic. Click here for more details.
- {aws-cdk.cx-api-2.139.1/src/aws_cdk.cx_api.egg-info → aws-cdk.cx-api-2.141.0}/PKG-INFO +17 -1
- {aws-cdk.cx-api-2.139.1 → aws-cdk.cx-api-2.141.0}/README.md +16 -0
- {aws-cdk.cx-api-2.139.1 → aws-cdk.cx-api-2.141.0}/setup.py +4 -4
- {aws-cdk.cx-api-2.139.1 → aws-cdk.cx-api-2.141.0}/src/aws_cdk/cx_api/__init__.py +16 -0
- {aws-cdk.cx-api-2.139.1 → aws-cdk.cx-api-2.141.0}/src/aws_cdk/cx_api/_jsii/__init__.py +1 -1
- aws-cdk.cx-api-2.141.0/src/aws_cdk/cx_api/_jsii/cx-api@2.141.0.jsii.tgz +0 -0
- {aws-cdk.cx-api-2.139.1 → aws-cdk.cx-api-2.141.0/src/aws_cdk.cx_api.egg-info}/PKG-INFO +17 -1
- {aws-cdk.cx-api-2.139.1 → aws-cdk.cx-api-2.141.0}/src/aws_cdk.cx_api.egg-info/SOURCES.txt +1 -1
- aws-cdk.cx-api-2.141.0/src/aws_cdk.cx_api.egg-info/requires.txt +4 -0
- aws-cdk.cx-api-2.139.1/src/aws_cdk/cx_api/_jsii/cx-api@2.139.1.jsii.tgz +0 -0
- aws-cdk.cx-api-2.139.1/src/aws_cdk.cx_api.egg-info/requires.txt +0 -4
- {aws-cdk.cx-api-2.139.1 → aws-cdk.cx-api-2.141.0}/LICENSE +0 -0
- {aws-cdk.cx-api-2.139.1 → aws-cdk.cx-api-2.141.0}/MANIFEST.in +0 -0
- {aws-cdk.cx-api-2.139.1 → aws-cdk.cx-api-2.141.0}/NOTICE +0 -0
- {aws-cdk.cx-api-2.139.1 → aws-cdk.cx-api-2.141.0}/pyproject.toml +0 -0
- {aws-cdk.cx-api-2.139.1 → aws-cdk.cx-api-2.141.0}/setup.cfg +0 -0
- {aws-cdk.cx-api-2.139.1 → aws-cdk.cx-api-2.141.0}/src/aws_cdk/cx_api/py.typed +0 -0
- {aws-cdk.cx-api-2.139.1 → aws-cdk.cx-api-2.141.0}/src/aws_cdk.cx_api.egg-info/dependency_links.txt +0 -0
- {aws-cdk.cx-api-2.139.1 → aws-cdk.cx-api-2.141.0}/src/aws_cdk.cx_api.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-cdk.cx-api
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.141.0
|
|
4
4
|
Summary: Cloud executable protocol
|
|
5
5
|
Home-page: https://github.com/aws/aws-cdk
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -352,3 +352,19 @@ without any prefix.
|
|
|
352
352
|
}
|
|
353
353
|
}
|
|
354
354
|
```
|
|
355
|
+
|
|
356
|
+
* `@aws-cdk/aws-ec2:ebsDefaultGp3Volume`
|
|
357
|
+
|
|
358
|
+
When enabled, the default volume type of the EBS volume will be GP3.
|
|
359
|
+
|
|
360
|
+
When this featuer flag is enabled, the default volume type of the EBS volume will be `EbsDeviceVolumeType.GENERAL_PURPOSE_SSD_GP3`
|
|
361
|
+
|
|
362
|
+
*cdk.json*
|
|
363
|
+
|
|
364
|
+
```json
|
|
365
|
+
{
|
|
366
|
+
"context": {
|
|
367
|
+
"@aws-cdk/aws-ec2:ebsDefaultGp3Volume": true
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
```
|
|
@@ -326,3 +326,19 @@ without any prefix.
|
|
|
326
326
|
}
|
|
327
327
|
}
|
|
328
328
|
```
|
|
329
|
+
|
|
330
|
+
* `@aws-cdk/aws-ec2:ebsDefaultGp3Volume`
|
|
331
|
+
|
|
332
|
+
When enabled, the default volume type of the EBS volume will be GP3.
|
|
333
|
+
|
|
334
|
+
When this featuer flag is enabled, the default volume type of the EBS volume will be `EbsDeviceVolumeType.GENERAL_PURPOSE_SSD_GP3`
|
|
335
|
+
|
|
336
|
+
*cdk.json*
|
|
337
|
+
|
|
338
|
+
```json
|
|
339
|
+
{
|
|
340
|
+
"context": {
|
|
341
|
+
"@aws-cdk/aws-ec2:ebsDefaultGp3Volume": true
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
```
|
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "aws-cdk.cx-api",
|
|
8
|
-
"version": "2.
|
|
8
|
+
"version": "2.141.0",
|
|
9
9
|
"description": "Cloud executable protocol",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"url": "https://github.com/aws/aws-cdk",
|
|
@@ -26,7 +26,7 @@ kwargs = json.loads(
|
|
|
26
26
|
],
|
|
27
27
|
"package_data": {
|
|
28
28
|
"aws_cdk.cx_api._jsii": [
|
|
29
|
-
"cx-api@2.
|
|
29
|
+
"cx-api@2.141.0.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"aws_cdk.cx_api": [
|
|
32
32
|
"py.typed"
|
|
@@ -34,8 +34,8 @@ kwargs = json.loads(
|
|
|
34
34
|
},
|
|
35
35
|
"python_requires": "~=3.8",
|
|
36
36
|
"install_requires": [
|
|
37
|
-
"aws-cdk.cloud-assembly-schema==2.
|
|
38
|
-
"jsii>=1.
|
|
37
|
+
"aws-cdk.cloud-assembly-schema==2.141.0",
|
|
38
|
+
"jsii>=1.98.0, <2.0.0",
|
|
39
39
|
"publication>=0.0.3",
|
|
40
40
|
"typeguard~=2.13.3"
|
|
41
41
|
],
|
|
@@ -327,6 +327,22 @@ without any prefix.
|
|
|
327
327
|
}
|
|
328
328
|
}
|
|
329
329
|
```
|
|
330
|
+
|
|
331
|
+
* `@aws-cdk/aws-ec2:ebsDefaultGp3Volume`
|
|
332
|
+
|
|
333
|
+
When enabled, the default volume type of the EBS volume will be GP3.
|
|
334
|
+
|
|
335
|
+
When this featuer flag is enabled, the default volume type of the EBS volume will be `EbsDeviceVolumeType.GENERAL_PURPOSE_SSD_GP3`
|
|
336
|
+
|
|
337
|
+
*cdk.json*
|
|
338
|
+
|
|
339
|
+
```json
|
|
340
|
+
{
|
|
341
|
+
"context": {
|
|
342
|
+
"@aws-cdk/aws-ec2:ebsDefaultGp3Volume": true
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
```
|
|
330
346
|
'''
|
|
331
347
|
from pkgutil import extend_path
|
|
332
348
|
__path__ = extend_path(__path__, __name__)
|
|
@@ -16,7 +16,7 @@ from typeguard import check_type
|
|
|
16
16
|
import aws_cdk.cloud_assembly_schema._jsii
|
|
17
17
|
|
|
18
18
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
19
|
-
"@aws-cdk/cx-api", "2.
|
|
19
|
+
"@aws-cdk/cx-api", "2.141.0", __name__[0:-6], "cx-api@2.141.0.jsii.tgz"
|
|
20
20
|
)
|
|
21
21
|
|
|
22
22
|
__all__ = [
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-cdk.cx-api
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.141.0
|
|
4
4
|
Summary: Cloud executable protocol
|
|
5
5
|
Home-page: https://github.com/aws/aws-cdk
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -352,3 +352,19 @@ without any prefix.
|
|
|
352
352
|
}
|
|
353
353
|
}
|
|
354
354
|
```
|
|
355
|
+
|
|
356
|
+
* `@aws-cdk/aws-ec2:ebsDefaultGp3Volume`
|
|
357
|
+
|
|
358
|
+
When enabled, the default volume type of the EBS volume will be GP3.
|
|
359
|
+
|
|
360
|
+
When this featuer flag is enabled, the default volume type of the EBS volume will be `EbsDeviceVolumeType.GENERAL_PURPOSE_SSD_GP3`
|
|
361
|
+
|
|
362
|
+
*cdk.json*
|
|
363
|
+
|
|
364
|
+
```json
|
|
365
|
+
{
|
|
366
|
+
"context": {
|
|
367
|
+
"@aws-cdk/aws-ec2:ebsDefaultGp3Volume": true
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
```
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{aws-cdk.cx-api-2.139.1 → aws-cdk.cx-api-2.141.0}/src/aws_cdk.cx_api.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|