aws-cdk.cx-api 2.176.0__tar.gz → 2.178.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.

Files changed (19) hide show
  1. {aws_cdk_cx_api-2.176.0 → aws_cdk_cx_api-2.178.0}/PKG-INFO +39 -3
  2. aws_cdk_cx_api-2.176.0/src/aws_cdk.cx_api.egg-info/PKG-INFO → aws_cdk_cx_api-2.178.0/README.md +36 -30
  3. {aws_cdk_cx_api-2.176.0 → aws_cdk_cx_api-2.178.0}/setup.py +4 -4
  4. {aws_cdk_cx_api-2.176.0 → aws_cdk_cx_api-2.178.0}/src/aws_cdk/cx_api/__init__.py +65 -8
  5. {aws_cdk_cx_api-2.176.0 → aws_cdk_cx_api-2.178.0}/src/aws_cdk/cx_api/_jsii/__init__.py +1 -1
  6. aws_cdk_cx_api-2.178.0/src/aws_cdk/cx_api/_jsii/cx-api@2.178.0.jsii.tgz +0 -0
  7. aws_cdk_cx_api-2.176.0/README.md → aws_cdk_cx_api-2.178.0/src/aws_cdk.cx_api.egg-info/PKG-INFO +66 -0
  8. {aws_cdk_cx_api-2.176.0 → aws_cdk_cx_api-2.178.0}/src/aws_cdk.cx_api.egg-info/SOURCES.txt +1 -1
  9. aws_cdk_cx_api-2.178.0/src/aws_cdk.cx_api.egg-info/requires.txt +4 -0
  10. aws_cdk_cx_api-2.176.0/src/aws_cdk/cx_api/_jsii/cx-api@2.176.0.jsii.tgz +0 -0
  11. aws_cdk_cx_api-2.176.0/src/aws_cdk.cx_api.egg-info/requires.txt +0 -4
  12. {aws_cdk_cx_api-2.176.0 → aws_cdk_cx_api-2.178.0}/LICENSE +0 -0
  13. {aws_cdk_cx_api-2.176.0 → aws_cdk_cx_api-2.178.0}/MANIFEST.in +0 -0
  14. {aws_cdk_cx_api-2.176.0 → aws_cdk_cx_api-2.178.0}/NOTICE +0 -0
  15. {aws_cdk_cx_api-2.176.0 → aws_cdk_cx_api-2.178.0}/pyproject.toml +0 -0
  16. {aws_cdk_cx_api-2.176.0 → aws_cdk_cx_api-2.178.0}/setup.cfg +0 -0
  17. {aws_cdk_cx_api-2.176.0 → aws_cdk_cx_api-2.178.0}/src/aws_cdk/cx_api/py.typed +0 -0
  18. {aws_cdk_cx_api-2.176.0 → aws_cdk_cx_api-2.178.0}/src/aws_cdk.cx_api.egg-info/dependency_links.txt +0 -0
  19. {aws_cdk_cx_api-2.176.0 → aws_cdk_cx_api-2.178.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.176.0
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.0.0
27
- Requires-Dist: jsii<2.0.0,>=1.104.0
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
+ ```
@@ -1,33 +1,3 @@
1
- Metadata-Version: 2.1
2
- Name: aws-cdk.cx-api
3
- Version: 2.176.0
4
- Summary: Cloud executable protocol
5
- Home-page: https://github.com/aws/aws-cdk
6
- Author: Amazon Web Services
7
- License: Apache-2.0
8
- Project-URL: Source, https://github.com/aws/aws-cdk.git
9
- Classifier: Intended Audience :: Developers
10
- Classifier: Operating System :: OS Independent
11
- Classifier: Programming Language :: JavaScript
12
- Classifier: Programming Language :: Python :: 3 :: Only
13
- Classifier: Programming Language :: Python :: 3.8
14
- Classifier: Programming Language :: Python :: 3.9
15
- Classifier: Programming Language :: Python :: 3.10
16
- Classifier: Programming Language :: Python :: 3.11
17
- Classifier: Typing :: Typed
18
- Classifier: Development Status :: 5 - Production/Stable
19
- Classifier: License :: OSI Approved
20
- Classifier: Framework :: AWS CDK
21
- Classifier: Framework :: AWS CDK :: 2
22
- Requires-Python: ~=3.8
23
- Description-Content-Type: text/markdown
24
- License-File: LICENSE
25
- License-File: NOTICE
26
- Requires-Dist: aws-cdk.cloud-assembly-schema<40.0.0,>=39.0.0
27
- Requires-Dist: jsii<2.0.0,>=1.104.0
28
- Requires-Dist: publication>=0.0.3
29
- Requires-Dist: typeguard<4.3.0,>=2.13.3
30
-
31
1
  # Cloud Executable API
32
2
 
33
3
  This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project.
@@ -606,3 +576,39 @@ If the flag is set to false then the default security group rules will only allo
606
576
  }
607
577
  }
608
578
  ```
579
+
580
+ * `@aws-cdk/aws-iam:oidcRejectUnauthorizedConnections`
581
+
582
+ When this feature flag is enabled, the default behaviour of OIDC Provider's custom resource handler will
583
+ default to reject unauthorized connections when downloading CA Certificates.
584
+
585
+ When this feature flag is disabled, the behaviour will be the same as current and will allow downloading
586
+ thumbprints from unsecure connnections.
587
+
588
+ *cdk.json*
589
+
590
+ ```json
591
+ {
592
+ "context": {
593
+ "@aws-cdk/aws-iam:oidcRejectUnauthorizedConnections": true
594
+ }
595
+ }
596
+ ```
597
+
598
+ * `@aws-cdk/core:enableAdditionalMetadataCollection`
599
+
600
+ When this feature flag is enabled, CDK expands the scope of usage data collection to include the:
601
+
602
+ * 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.
603
+ * 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.
604
+ * L2 construct method usage - Collection method name, parameter keys and parameter values of BOOL and ENUM type.
605
+
606
+ *cdk.json*
607
+
608
+ ```json
609
+ {
610
+ "context": {
611
+ "@aws-cdk/core:enableAdditionalMetadataCollection": true
612
+ }
613
+ }
614
+ ```
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "aws-cdk.cx-api",
8
- "version": "2.176.0",
8
+ "version": "2.178.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.176.0.jsii.tgz"
29
+ "cx-api@2.178.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>=39.0.0, <40.0.0",
38
- "jsii>=1.104.0, <2.0.0",
37
+ "aws-cdk.cloud-assembly-schema>=39.2.0, <40.0.0",
38
+ "jsii>=1.106.0, <2.0.0",
39
39
  "publication>=0.0.3",
40
40
  "typeguard>=2.13.3,<4.3.0"
41
41
  ],
@@ -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:
@@ -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.176.0", __name__[0:-6], "cx-api@2.176.0.jsii.tgz"
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__ = [
@@ -1,3 +1,33 @@
1
+ Metadata-Version: 2.1
2
+ Name: aws-cdk.cx-api
3
+ Version: 2.178.0
4
+ Summary: Cloud executable protocol
5
+ Home-page: https://github.com/aws/aws-cdk
6
+ Author: Amazon Web Services
7
+ License: Apache-2.0
8
+ Project-URL: Source, https://github.com/aws/aws-cdk.git
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: JavaScript
12
+ Classifier: Programming Language :: Python :: 3 :: Only
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Typing :: Typed
18
+ Classifier: Development Status :: 5 - Production/Stable
19
+ Classifier: License :: OSI Approved
20
+ Classifier: Framework :: AWS CDK
21
+ Classifier: Framework :: AWS CDK :: 2
22
+ Requires-Python: ~=3.8
23
+ Description-Content-Type: text/markdown
24
+ License-File: LICENSE
25
+ License-File: NOTICE
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
+ Requires-Dist: publication>=0.0.3
29
+ Requires-Dist: typeguard<4.3.0,>=2.13.3
30
+
1
31
  # Cloud Executable API
2
32
 
3
33
  This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project.
@@ -576,3 +606,39 @@ If the flag is set to false then the default security group rules will only allo
576
606
  }
577
607
  }
578
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
+ ```
@@ -12,4 +12,4 @@ src/aws_cdk.cx_api.egg-info/top_level.txt
12
12
  src/aws_cdk/cx_api/__init__.py
13
13
  src/aws_cdk/cx_api/py.typed
14
14
  src/aws_cdk/cx_api/_jsii/__init__.py
15
- src/aws_cdk/cx_api/_jsii/cx-api@2.176.0.jsii.tgz
15
+ src/aws_cdk/cx_api/_jsii/cx-api@2.178.0.jsii.tgz
@@ -0,0 +1,4 @@
1
+ aws-cdk.cloud-assembly-schema<40.0.0,>=39.2.0
2
+ jsii<2.0.0,>=1.106.0
3
+ publication>=0.0.3
4
+ typeguard<4.3.0,>=2.13.3
@@ -1,4 +0,0 @@
1
- aws-cdk.cloud-assembly-schema<40.0.0,>=39.0.0
2
- jsii<2.0.0,>=1.104.0
3
- publication>=0.0.3
4
- typeguard<4.3.0,>=2.13.3