aws-cdk.cx-api 2.176.0__py3-none-any.whl → 2.178.0__py3-none-any.whl
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/__init__.py +65 -8
- aws_cdk/cx_api/_jsii/__init__.py +1 -1
- aws_cdk/cx_api/_jsii/cx-api@2.178.0.jsii.tgz +0 -0
- {aws_cdk.cx_api-2.176.0.dist-info → aws_cdk.cx_api-2.178.0.dist-info}/METADATA +39 -3
- aws_cdk.cx_api-2.178.0.dist-info/RECORD +10 -0
- aws_cdk/cx_api/_jsii/cx-api@2.176.0.jsii.tgz +0 -0
- aws_cdk.cx_api-2.176.0.dist-info/RECORD +0 -10
- {aws_cdk.cx_api-2.176.0.dist-info → aws_cdk.cx_api-2.178.0.dist-info}/LICENSE +0 -0
- {aws_cdk.cx_api-2.176.0.dist-info → aws_cdk.cx_api-2.178.0.dist-info}/NOTICE +0 -0
- {aws_cdk.cx_api-2.176.0.dist-info → aws_cdk.cx_api-2.178.0.dist-info}/WHEEL +0 -0
- {aws_cdk.cx_api-2.176.0.dist-info → aws_cdk.cx_api-2.178.0.dist-info}/top_level.txt +0 -0
aws_cdk/cx_api/__init__.py
CHANGED
|
@@ -577,6 +577,42 @@ If the flag is set to false then the default security group rules will only allo
|
|
|
577
577
|
}
|
|
578
578
|
}
|
|
579
579
|
```
|
|
580
|
+
|
|
581
|
+
* `@aws-cdk/aws-iam:oidcRejectUnauthorizedConnections`
|
|
582
|
+
|
|
583
|
+
When this feature flag is enabled, the default behaviour of OIDC Provider's custom resource handler will
|
|
584
|
+
default to reject unauthorized connections when downloading CA Certificates.
|
|
585
|
+
|
|
586
|
+
When this feature flag is disabled, the behaviour will be the same as current and will allow downloading
|
|
587
|
+
thumbprints from unsecure connnections.
|
|
588
|
+
|
|
589
|
+
*cdk.json*
|
|
590
|
+
|
|
591
|
+
```json
|
|
592
|
+
{
|
|
593
|
+
"context": {
|
|
594
|
+
"@aws-cdk/aws-iam:oidcRejectUnauthorizedConnections": true
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
```
|
|
598
|
+
|
|
599
|
+
* `@aws-cdk/core:enableAdditionalMetadataCollection`
|
|
600
|
+
|
|
601
|
+
When this feature flag is enabled, CDK expands the scope of usage data collection to include the:
|
|
602
|
+
|
|
603
|
+
* L2 construct property keys - Collect which property keys you use from the L2 constructs in your app. This includes property keys nested in dictionary objects.
|
|
604
|
+
* L2 construct property values of BOOL and ENUM types - Collect property key values of only BOOL and ENUM types. All other types, such as string values or construct references will be redacted.
|
|
605
|
+
* L2 construct method usage - Collection method name, parameter keys and parameter values of BOOL and ENUM type.
|
|
606
|
+
|
|
607
|
+
*cdk.json*
|
|
608
|
+
|
|
609
|
+
```json
|
|
610
|
+
{
|
|
611
|
+
"context": {
|
|
612
|
+
"@aws-cdk/core:enableAdditionalMetadataCollection": true
|
|
613
|
+
}
|
|
614
|
+
}
|
|
615
|
+
```
|
|
580
616
|
'''
|
|
581
617
|
from pkgutil import extend_path
|
|
582
618
|
__path__ = extend_path(__path__, __name__)
|
|
@@ -986,6 +1022,7 @@ class CloudArtifact(metaclass=jsii.JSIIMeta, jsii_type="@aws-cdk/cx-api.CloudArt
|
|
|
986
1022
|
return typing.cast(typing.List["SynthesisMessage"], jsii.get(self, "messages"))
|
|
987
1023
|
|
|
988
1024
|
|
|
1025
|
+
@jsii.implements(_aws_cdk_cloud_assembly_schema_cae1d136.ICloudAssembly)
|
|
989
1026
|
class CloudAssembly(metaclass=jsii.JSIIMeta, jsii_type="@aws-cdk/cx-api.CloudAssembly"):
|
|
990
1027
|
'''Represents a deployable cloud application.
|
|
991
1028
|
|
|
@@ -1030,6 +1067,20 @@ class CloudAssembly(metaclass=jsii.JSIIMeta, jsii_type="@aws-cdk/cx-api.CloudAss
|
|
|
1030
1067
|
|
|
1031
1068
|
jsii.create(self.__class__, self, [directory, load_options])
|
|
1032
1069
|
|
|
1070
|
+
@jsii.member(jsii_name="isCloudAssembly")
|
|
1071
|
+
@builtins.classmethod
|
|
1072
|
+
def is_cloud_assembly(cls, x: typing.Any) -> builtins.bool:
|
|
1073
|
+
'''Return whether the given object is a CloudAssembly.
|
|
1074
|
+
|
|
1075
|
+
We do attribute detection since we can't reliably use 'instanceof'.
|
|
1076
|
+
|
|
1077
|
+
:param x: -
|
|
1078
|
+
'''
|
|
1079
|
+
if __debug__:
|
|
1080
|
+
type_hints = typing.get_type_hints(_typecheckingstub__896de0ab238f2d25a3c91a759c5498ef6b66f487ca63a69dddf3c7c53b6e77b3)
|
|
1081
|
+
check_type(argname="argument x", value=x, expected_type=type_hints["x"])
|
|
1082
|
+
return typing.cast(builtins.bool, jsii.sinvoke(cls, "isCloudAssembly", [x]))
|
|
1083
|
+
|
|
1033
1084
|
@jsii.member(jsii_name="getNestedAssembly")
|
|
1034
1085
|
def get_nested_assembly(self, artifact_id: builtins.str) -> "CloudAssembly":
|
|
1035
1086
|
'''Returns a nested assembly.
|
|
@@ -2426,7 +2477,7 @@ class MetadataEntry(_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry):
|
|
|
2426
2477
|
self,
|
|
2427
2478
|
*,
|
|
2428
2479
|
type: builtins.str,
|
|
2429
|
-
data: typing.Optional[typing.Union[builtins.str, typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.Tag, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
|
2480
|
+
data: typing.Optional[typing.Union[builtins.str, jsii.Number, builtins.bool, typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.Tag, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
|
2430
2481
|
trace: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2431
2482
|
) -> None:
|
|
2432
2483
|
'''(deprecated) Backwards compatibility for when ``MetadataEntry`` was defined here.
|
|
@@ -2481,13 +2532,13 @@ class MetadataEntry(_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry):
|
|
|
2481
2532
|
@builtins.property
|
|
2482
2533
|
def data(
|
|
2483
2534
|
self,
|
|
2484
|
-
) -> typing.Optional[typing.Union[builtins.str, _aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, _aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.List[_aws_cdk_cloud_assembly_schema_cae1d136.Tag]]]:
|
|
2535
|
+
) -> typing.Optional[typing.Union[builtins.str, jsii.Number, builtins.bool, _aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, _aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.List[_aws_cdk_cloud_assembly_schema_cae1d136.Tag]]]:
|
|
2485
2536
|
'''The data.
|
|
2486
2537
|
|
|
2487
2538
|
:default: - no data.
|
|
2488
2539
|
'''
|
|
2489
2540
|
result = self._values.get("data")
|
|
2490
|
-
return typing.cast(typing.Optional[typing.Union[builtins.str, _aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, _aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.List[_aws_cdk_cloud_assembly_schema_cae1d136.Tag]]], result)
|
|
2541
|
+
return typing.cast(typing.Optional[typing.Union[builtins.str, jsii.Number, builtins.bool, _aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, _aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.List[_aws_cdk_cloud_assembly_schema_cae1d136.Tag]]], result)
|
|
2491
2542
|
|
|
2492
2543
|
@builtins.property
|
|
2493
2544
|
def trace(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
@@ -2520,7 +2571,7 @@ class MetadataEntryResult(_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry)
|
|
|
2520
2571
|
self,
|
|
2521
2572
|
*,
|
|
2522
2573
|
type: builtins.str,
|
|
2523
|
-
data: typing.Optional[typing.Union[builtins.str, typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.Tag, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
|
2574
|
+
data: typing.Optional[typing.Union[builtins.str, jsii.Number, builtins.bool, typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.Tag, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
|
2524
2575
|
trace: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2525
2576
|
path: builtins.str,
|
|
2526
2577
|
) -> None:
|
|
@@ -2572,13 +2623,13 @@ class MetadataEntryResult(_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry)
|
|
|
2572
2623
|
@builtins.property
|
|
2573
2624
|
def data(
|
|
2574
2625
|
self,
|
|
2575
|
-
) -> typing.Optional[typing.Union[builtins.str, _aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, _aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.List[_aws_cdk_cloud_assembly_schema_cae1d136.Tag]]]:
|
|
2626
|
+
) -> typing.Optional[typing.Union[builtins.str, jsii.Number, builtins.bool, _aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, _aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.List[_aws_cdk_cloud_assembly_schema_cae1d136.Tag]]]:
|
|
2576
2627
|
'''The data.
|
|
2577
2628
|
|
|
2578
2629
|
:default: - no data.
|
|
2579
2630
|
'''
|
|
2580
2631
|
result = self._values.get("data")
|
|
2581
|
-
return typing.cast(typing.Optional[typing.Union[builtins.str, _aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, _aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.List[_aws_cdk_cloud_assembly_schema_cae1d136.Tag]]], result)
|
|
2632
|
+
return typing.cast(typing.Optional[typing.Union[builtins.str, jsii.Number, builtins.bool, _aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, _aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.List[_aws_cdk_cloud_assembly_schema_cae1d136.Tag]]], result)
|
|
2582
2633
|
|
|
2583
2634
|
@builtins.property
|
|
2584
2635
|
def trace(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
@@ -4015,6 +4066,12 @@ def _typecheckingstub__f166d3cdd543050e1f6916d3f8b21148d9dce169d0973ba379565d8cc
|
|
|
4015
4066
|
"""Type checking stubs"""
|
|
4016
4067
|
pass
|
|
4017
4068
|
|
|
4069
|
+
def _typecheckingstub__896de0ab238f2d25a3c91a759c5498ef6b66f487ca63a69dddf3c7c53b6e77b3(
|
|
4070
|
+
x: typing.Any,
|
|
4071
|
+
) -> None:
|
|
4072
|
+
"""Type checking stubs"""
|
|
4073
|
+
pass
|
|
4074
|
+
|
|
4018
4075
|
def _typecheckingstub__5b18409e446ee0849b8e8bd80b844cb7b7741d0e1ffbece4d0bba5e5384aae08(
|
|
4019
4076
|
artifact_id: builtins.str,
|
|
4020
4077
|
) -> None:
|
|
@@ -4203,7 +4260,7 @@ def _typecheckingstub__b54b307c2b08922d6c877b21587304c7faf7770ba07126997e90cdeb3
|
|
|
4203
4260
|
def _typecheckingstub__555559c755818fb0c68e54d294338ddd2443772e16a9484abbd3cdbd79b25a32(
|
|
4204
4261
|
*,
|
|
4205
4262
|
type: builtins.str,
|
|
4206
|
-
data: typing.Optional[typing.Union[builtins.str, typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.Tag, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
|
4263
|
+
data: typing.Optional[typing.Union[builtins.str, jsii.Number, builtins.bool, typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.Tag, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
|
4207
4264
|
trace: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
4208
4265
|
) -> None:
|
|
4209
4266
|
"""Type checking stubs"""
|
|
@@ -4212,7 +4269,7 @@ def _typecheckingstub__555559c755818fb0c68e54d294338ddd2443772e16a9484abbd3cdbd7
|
|
|
4212
4269
|
def _typecheckingstub__de77435a8388b388a3788abe2a0f532fff7b7f8c48d501d071411098e021c1e2(
|
|
4213
4270
|
*,
|
|
4214
4271
|
type: builtins.str,
|
|
4215
|
-
data: typing.Optional[typing.Union[builtins.str, typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.Tag, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
|
4272
|
+
data: typing.Optional[typing.Union[builtins.str, jsii.Number, builtins.bool, typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.Tag, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
|
4216
4273
|
trace: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
4217
4274
|
path: builtins.str,
|
|
4218
4275
|
) -> None:
|
aws_cdk/cx_api/_jsii/__init__.py
CHANGED
|
@@ -31,7 +31,7 @@ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing
|
|
|
31
31
|
import aws_cdk.cloud_assembly_schema._jsii
|
|
32
32
|
|
|
33
33
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
34
|
-
"@aws-cdk/cx-api", "2.
|
|
34
|
+
"@aws-cdk/cx-api", "2.178.0", __name__[0:-6], "cx-api@2.178.0.jsii.tgz"
|
|
35
35
|
)
|
|
36
36
|
|
|
37
37
|
__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.178.0
|
|
4
4
|
Summary: Cloud executable protocol
|
|
5
5
|
Home-page: https://github.com/aws/aws-cdk
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -23,8 +23,8 @@ Requires-Python: ~=3.8
|
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
License-File: LICENSE
|
|
25
25
|
License-File: NOTICE
|
|
26
|
-
Requires-Dist: aws-cdk.cloud-assembly-schema<40.0.0,>=39.
|
|
27
|
-
Requires-Dist: jsii<2.0.0,>=1.
|
|
26
|
+
Requires-Dist: aws-cdk.cloud-assembly-schema<40.0.0,>=39.2.0
|
|
27
|
+
Requires-Dist: jsii<2.0.0,>=1.106.0
|
|
28
28
|
Requires-Dist: publication>=0.0.3
|
|
29
29
|
Requires-Dist: typeguard<4.3.0,>=2.13.3
|
|
30
30
|
|
|
@@ -606,3 +606,39 @@ If the flag is set to false then the default security group rules will only allo
|
|
|
606
606
|
}
|
|
607
607
|
}
|
|
608
608
|
```
|
|
609
|
+
|
|
610
|
+
* `@aws-cdk/aws-iam:oidcRejectUnauthorizedConnections`
|
|
611
|
+
|
|
612
|
+
When this feature flag is enabled, the default behaviour of OIDC Provider's custom resource handler will
|
|
613
|
+
default to reject unauthorized connections when downloading CA Certificates.
|
|
614
|
+
|
|
615
|
+
When this feature flag is disabled, the behaviour will be the same as current and will allow downloading
|
|
616
|
+
thumbprints from unsecure connnections.
|
|
617
|
+
|
|
618
|
+
*cdk.json*
|
|
619
|
+
|
|
620
|
+
```json
|
|
621
|
+
{
|
|
622
|
+
"context": {
|
|
623
|
+
"@aws-cdk/aws-iam:oidcRejectUnauthorizedConnections": true
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
```
|
|
627
|
+
|
|
628
|
+
* `@aws-cdk/core:enableAdditionalMetadataCollection`
|
|
629
|
+
|
|
630
|
+
When this feature flag is enabled, CDK expands the scope of usage data collection to include the:
|
|
631
|
+
|
|
632
|
+
* L2 construct property keys - Collect which property keys you use from the L2 constructs in your app. This includes property keys nested in dictionary objects.
|
|
633
|
+
* L2 construct property values of BOOL and ENUM types - Collect property key values of only BOOL and ENUM types. All other types, such as string values or construct references will be redacted.
|
|
634
|
+
* L2 construct method usage - Collection method name, parameter keys and parameter values of BOOL and ENUM type.
|
|
635
|
+
|
|
636
|
+
*cdk.json*
|
|
637
|
+
|
|
638
|
+
```json
|
|
639
|
+
{
|
|
640
|
+
"context": {
|
|
641
|
+
"@aws-cdk/core:enableAdditionalMetadataCollection": true
|
|
642
|
+
}
|
|
643
|
+
}
|
|
644
|
+
```
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
aws_cdk/cx_api/__init__.py,sha256=X8HC0nKw4eBWy6juFM3FJvNGYkAoiUMJ6flAIvNxCvA,193817
|
|
2
|
+
aws_cdk/cx_api/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
aws_cdk/cx_api/_jsii/__init__.py,sha256=T6o9f-gZJBc4_K8J5-NI7Bke35_mNCNyRJX9g8EyVbE,1434
|
|
4
|
+
aws_cdk/cx_api/_jsii/cx-api@2.178.0.jsii.tgz,sha256=xHvGf08QuO2umHdmMmZx7gR8LTJ9BCYUAs0JzkwU3Fo,236574
|
|
5
|
+
aws_cdk.cx_api-2.178.0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
|
|
6
|
+
aws_cdk.cx_api-2.178.0.dist-info/METADATA,sha256=JSZnKEc0Giedam6rf3wZ12qcPMt-0vYTBBj48dOQhbs,22076
|
|
7
|
+
aws_cdk.cx_api-2.178.0.dist-info/NOTICE,sha256=ADLo99tv5kq5gQDGp9ApDXyR8I8l6SQRbLl_UT8kHuY,1078
|
|
8
|
+
aws_cdk.cx_api-2.178.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
9
|
+
aws_cdk.cx_api-2.178.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
10
|
+
aws_cdk.cx_api-2.178.0.dist-info/RECORD,,
|
|
Binary file
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
aws_cdk/cx_api/__init__.py,sha256=OOocvgj-jGKcgNz0hB2wpT7hLxW-hoC86Q7gU_VBDHw,191500
|
|
2
|
-
aws_cdk/cx_api/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
aws_cdk/cx_api/_jsii/__init__.py,sha256=t48vw_cdf4bFcKBOV7bOSSxwls064LSVpAw8J4S6uWQ,1434
|
|
4
|
-
aws_cdk/cx_api/_jsii/cx-api@2.176.0.jsii.tgz,sha256=2yg84nP76ERFg3tb5hZV_wFvaXyW8IJPIX3_q8XmlYU,233288
|
|
5
|
-
aws_cdk.cx_api-2.176.0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
|
|
6
|
-
aws_cdk.cx_api-2.176.0.dist-info/METADATA,sha256=vlmo40qYqIintyNaju9GQ__JvpUfqITNa976x6UilYU,20849
|
|
7
|
-
aws_cdk.cx_api-2.176.0.dist-info/NOTICE,sha256=ADLo99tv5kq5gQDGp9ApDXyR8I8l6SQRbLl_UT8kHuY,1078
|
|
8
|
-
aws_cdk.cx_api-2.176.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
9
|
-
aws_cdk.cx_api-2.176.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
10
|
-
aws_cdk.cx_api-2.176.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|