aws-cdk.cx-api 2.175.1__py3-none-any.whl → 2.177.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.

@@ -19,7 +19,7 @@ and error indicating that a bucket policy already exists.
19
19
  In cases where we know what the required policy is we can go ahead and create the policy so we can
20
20
  remain in control of it.
21
21
 
22
- https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/AWS-logs-and-resource-policy.html#AWS-logs-infrastructure-S3
22
+ [https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/AWS-logs-and-resource-policy.html#AWS-logs-infrastructure-S3](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/AWS-logs-and-resource-policy.html#AWS-logs-infrastructure-S3)
23
23
 
24
24
  *cdk.json*
25
25
 
@@ -122,7 +122,7 @@ enabled on the bucket.
122
122
  This flag uses a Bucket Policy statement to allow Server Access Log delivery, following best
123
123
  practices for S3.
124
124
 
125
- https://docs.aws.amazon.com/AmazonS3/latest/userguide/enable-server-access-logging.html
125
+ [https://docs.aws.amazon.com/AmazonS3/latest/userguide/enable-server-access-logging.html](https://docs.aws.amazon.com/AmazonS3/latest/userguide/enable-server-access-logging.html)
126
126
 
127
127
  ```json
128
128
  {
@@ -172,7 +172,7 @@ Enable this feature flag to use the `AmazonEMRServicePolicy_v2` managed policies
172
172
  This is a feature flag as the old behavior will be deprecated, but some resources may require manual
173
173
  intervention since they might not have the appropriate tags propagated automatically.
174
174
 
175
- https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-managed-iam-policies.html
175
+ [https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-managed-iam-policies.html](https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-managed-iam-policies.html)
176
176
 
177
177
  *cdk.json*
178
178
 
@@ -365,7 +365,7 @@ When this featuer flag is enabled, remove the default deployment alarm settings
365
365
  When enabled, IAM Policy created to run tasks won't include the task definition ARN, only the revision ARN.
366
366
 
367
367
  When this feature flag is enabled, the IAM Policy created to run tasks won't include the task definition ARN, only the revision ARN.
368
- The revision ARN is more specific than the task definition ARN. See https://docs.aws.amazon.com/step-functions/latest/dg/ecs-iam.html
368
+ The revision ARN is more specific than the task definition ARN. See [https://docs.aws.amazon.com/step-functions/latest/dg/ecs-iam.html](https://docs.aws.amazon.com/step-functions/latest/dg/ecs-iam.html)
369
369
  for more details.
370
370
 
371
371
  *cdk.json*
@@ -556,6 +556,45 @@ guarantee the correct execution of the feature in all platforms. See [Github dis
556
556
  },
557
557
  }
558
558
  ```
559
+
560
+ * `@aws-cdk/aws-elasticloadbalancingV2:albDualstackWithoutPublicIpv4SecurityGroupRulesDefault`
561
+
562
+ When enabled, the default security group ingress rules will allow IPv6 ingress from anywhere,
563
+ For internet facing ALBs with `dualstack-without-public-ipv4` IP address type, the default security group rules
564
+ will allow IPv6 ingress from anywhere (::/0). Previously, the default security group rules would only allow IPv4 ingress.
565
+
566
+ Using a feature flag to make sure existing customers who might be relying
567
+ on the overly restrictive permissions are not broken.,
568
+
569
+ If the flag is set to false then the default security group rules will only allow IPv4 ingress.
570
+
571
+ *cdk.json*
572
+
573
+ ```json
574
+ {
575
+ "context": {
576
+ "@aws-cdk/aws-elasticloadbalancingV2:albDualstackWithoutPublicIpv4SecurityGroupRulesDefault": true
577
+ }
578
+ }
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
+ ```
559
598
  '''
560
599
  from pkgutil import extend_path
561
600
  __path__ = extend_path(__path__, __name__)
@@ -965,6 +1004,7 @@ class CloudArtifact(metaclass=jsii.JSIIMeta, jsii_type="@aws-cdk/cx-api.CloudArt
965
1004
  return typing.cast(typing.List["SynthesisMessage"], jsii.get(self, "messages"))
966
1005
 
967
1006
 
1007
+ @jsii.implements(_aws_cdk_cloud_assembly_schema_cae1d136.ICloudAssembly)
968
1008
  class CloudAssembly(metaclass=jsii.JSIIMeta, jsii_type="@aws-cdk/cx-api.CloudAssembly"):
969
1009
  '''Represents a deployable cloud application.
970
1010
 
@@ -1009,6 +1049,20 @@ class CloudAssembly(metaclass=jsii.JSIIMeta, jsii_type="@aws-cdk/cx-api.CloudAss
1009
1049
 
1010
1050
  jsii.create(self.__class__, self, [directory, load_options])
1011
1051
 
1052
+ @jsii.member(jsii_name="isCloudAssembly")
1053
+ @builtins.classmethod
1054
+ def is_cloud_assembly(cls, x: typing.Any) -> builtins.bool:
1055
+ '''Return whether the given object is a CloudAssembly.
1056
+
1057
+ We do attribute detection since we can't reliably use 'instanceof'.
1058
+
1059
+ :param x: -
1060
+ '''
1061
+ if __debug__:
1062
+ type_hints = typing.get_type_hints(_typecheckingstub__896de0ab238f2d25a3c91a759c5498ef6b66f487ca63a69dddf3c7c53b6e77b3)
1063
+ check_type(argname="argument x", value=x, expected_type=type_hints["x"])
1064
+ return typing.cast(builtins.bool, jsii.sinvoke(cls, "isCloudAssembly", [x]))
1065
+
1012
1066
  @jsii.member(jsii_name="getNestedAssembly")
1013
1067
  def get_nested_assembly(self, artifact_id: builtins.str) -> "CloudAssembly":
1014
1068
  '''Returns a nested assembly.
@@ -2405,7 +2459,7 @@ class MetadataEntry(_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry):
2405
2459
  self,
2406
2460
  *,
2407
2461
  type: builtins.str,
2408
- 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,
2462
+ 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,
2409
2463
  trace: typing.Optional[typing.Sequence[builtins.str]] = None,
2410
2464
  ) -> None:
2411
2465
  '''(deprecated) Backwards compatibility for when ``MetadataEntry`` was defined here.
@@ -2460,13 +2514,13 @@ class MetadataEntry(_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry):
2460
2514
  @builtins.property
2461
2515
  def data(
2462
2516
  self,
2463
- ) -> 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]]]:
2517
+ ) -> 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]]]:
2464
2518
  '''The data.
2465
2519
 
2466
2520
  :default: - no data.
2467
2521
  '''
2468
2522
  result = self._values.get("data")
2469
- 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)
2523
+ 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)
2470
2524
 
2471
2525
  @builtins.property
2472
2526
  def trace(self) -> typing.Optional[typing.List[builtins.str]]:
@@ -2499,7 +2553,7 @@ class MetadataEntryResult(_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry)
2499
2553
  self,
2500
2554
  *,
2501
2555
  type: builtins.str,
2502
- 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,
2556
+ 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,
2503
2557
  trace: typing.Optional[typing.Sequence[builtins.str]] = None,
2504
2558
  path: builtins.str,
2505
2559
  ) -> None:
@@ -2551,13 +2605,13 @@ class MetadataEntryResult(_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry)
2551
2605
  @builtins.property
2552
2606
  def data(
2553
2607
  self,
2554
- ) -> 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]]]:
2608
+ ) -> 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]]]:
2555
2609
  '''The data.
2556
2610
 
2557
2611
  :default: - no data.
2558
2612
  '''
2559
2613
  result = self._values.get("data")
2560
- 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)
2614
+ 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)
2561
2615
 
2562
2616
  @builtins.property
2563
2617
  def trace(self) -> typing.Optional[typing.List[builtins.str]]:
@@ -3994,6 +4048,12 @@ def _typecheckingstub__f166d3cdd543050e1f6916d3f8b21148d9dce169d0973ba379565d8cc
3994
4048
  """Type checking stubs"""
3995
4049
  pass
3996
4050
 
4051
+ def _typecheckingstub__896de0ab238f2d25a3c91a759c5498ef6b66f487ca63a69dddf3c7c53b6e77b3(
4052
+ x: typing.Any,
4053
+ ) -> None:
4054
+ """Type checking stubs"""
4055
+ pass
4056
+
3997
4057
  def _typecheckingstub__5b18409e446ee0849b8e8bd80b844cb7b7741d0e1ffbece4d0bba5e5384aae08(
3998
4058
  artifact_id: builtins.str,
3999
4059
  ) -> None:
@@ -4182,7 +4242,7 @@ def _typecheckingstub__b54b307c2b08922d6c877b21587304c7faf7770ba07126997e90cdeb3
4182
4242
  def _typecheckingstub__555559c755818fb0c68e54d294338ddd2443772e16a9484abbd3cdbd79b25a32(
4183
4243
  *,
4184
4244
  type: builtins.str,
4185
- 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,
4245
+ 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,
4186
4246
  trace: typing.Optional[typing.Sequence[builtins.str]] = None,
4187
4247
  ) -> None:
4188
4248
  """Type checking stubs"""
@@ -4191,7 +4251,7 @@ def _typecheckingstub__555559c755818fb0c68e54d294338ddd2443772e16a9484abbd3cdbd7
4191
4251
  def _typecheckingstub__de77435a8388b388a3788abe2a0f532fff7b7f8c48d501d071411098e021c1e2(
4192
4252
  *,
4193
4253
  type: builtins.str,
4194
- 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,
4254
+ 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,
4195
4255
  trace: typing.Optional[typing.Sequence[builtins.str]] = None,
4196
4256
  path: builtins.str,
4197
4257
  ) -> 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.175.1", __name__[0:-6], "cx-api@2.175.1.jsii.tgz"
34
+ "@aws-cdk/cx-api", "2.177.0", __name__[0:-6], "cx-api@2.177.0.jsii.tgz"
35
35
  )
36
36
 
37
37
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-cdk.cx-api
3
- Version: 2.175.1
3
+ Version: 2.177.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
 
@@ -48,7 +48,7 @@ and error indicating that a bucket policy already exists.
48
48
  In cases where we know what the required policy is we can go ahead and create the policy so we can
49
49
  remain in control of it.
50
50
 
51
- https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/AWS-logs-and-resource-policy.html#AWS-logs-infrastructure-S3
51
+ [https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/AWS-logs-and-resource-policy.html#AWS-logs-infrastructure-S3](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/AWS-logs-and-resource-policy.html#AWS-logs-infrastructure-S3)
52
52
 
53
53
  *cdk.json*
54
54
 
@@ -151,7 +151,7 @@ enabled on the bucket.
151
151
  This flag uses a Bucket Policy statement to allow Server Access Log delivery, following best
152
152
  practices for S3.
153
153
 
154
- https://docs.aws.amazon.com/AmazonS3/latest/userguide/enable-server-access-logging.html
154
+ [https://docs.aws.amazon.com/AmazonS3/latest/userguide/enable-server-access-logging.html](https://docs.aws.amazon.com/AmazonS3/latest/userguide/enable-server-access-logging.html)
155
155
 
156
156
  ```json
157
157
  {
@@ -201,7 +201,7 @@ Enable this feature flag to use the `AmazonEMRServicePolicy_v2` managed policies
201
201
  This is a feature flag as the old behavior will be deprecated, but some resources may require manual
202
202
  intervention since they might not have the appropriate tags propagated automatically.
203
203
 
204
- https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-managed-iam-policies.html
204
+ [https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-managed-iam-policies.html](https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-managed-iam-policies.html)
205
205
 
206
206
  *cdk.json*
207
207
 
@@ -394,7 +394,7 @@ When this featuer flag is enabled, remove the default deployment alarm settings
394
394
  When enabled, IAM Policy created to run tasks won't include the task definition ARN, only the revision ARN.
395
395
 
396
396
  When this feature flag is enabled, the IAM Policy created to run tasks won't include the task definition ARN, only the revision ARN.
397
- The revision ARN is more specific than the task definition ARN. See https://docs.aws.amazon.com/step-functions/latest/dg/ecs-iam.html
397
+ The revision ARN is more specific than the task definition ARN. See [https://docs.aws.amazon.com/step-functions/latest/dg/ecs-iam.html](https://docs.aws.amazon.com/step-functions/latest/dg/ecs-iam.html)
398
398
  for more details.
399
399
 
400
400
  *cdk.json*
@@ -585,3 +585,42 @@ guarantee the correct execution of the feature in all platforms. See [Github dis
585
585
  },
586
586
  }
587
587
  ```
588
+
589
+ * `@aws-cdk/aws-elasticloadbalancingV2:albDualstackWithoutPublicIpv4SecurityGroupRulesDefault`
590
+
591
+ When enabled, the default security group ingress rules will allow IPv6 ingress from anywhere,
592
+ For internet facing ALBs with `dualstack-without-public-ipv4` IP address type, the default security group rules
593
+ will allow IPv6 ingress from anywhere (::/0). Previously, the default security group rules would only allow IPv4 ingress.
594
+
595
+ Using a feature flag to make sure existing customers who might be relying
596
+ on the overly restrictive permissions are not broken.,
597
+
598
+ If the flag is set to false then the default security group rules will only allow IPv4 ingress.
599
+
600
+ *cdk.json*
601
+
602
+ ```json
603
+ {
604
+ "context": {
605
+ "@aws-cdk/aws-elasticloadbalancingV2:albDualstackWithoutPublicIpv4SecurityGroupRulesDefault": true
606
+ }
607
+ }
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
+ ```
@@ -0,0 +1,10 @@
1
+ aws_cdk/cx_api/__init__.py,sha256=lwbnMp0AzCwDJG-vOvk9IOjjzx7ejky9GOOjmCPu1SQ,193086
2
+ aws_cdk/cx_api/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
+ aws_cdk/cx_api/_jsii/__init__.py,sha256=xkXrpbIxNAIDJmOy__Ld1bwonQ2hYKWL5NFAQt0iUKk,1434
4
+ aws_cdk/cx_api/_jsii/cx-api@2.177.0.jsii.tgz,sha256=HM_haA4JIUMoKlGArSORUwObM8Ui7NBBu5typoRVAzU,235025
5
+ aws_cdk.cx_api-2.177.0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
6
+ aws_cdk.cx_api-2.177.0.dist-info/METADATA,sha256=-ea8_yrxGMCsKrBFFUgh3Kqa6FbpFh1Hzg7JV6X4kLM,21345
7
+ aws_cdk.cx_api-2.177.0.dist-info/NOTICE,sha256=ADLo99tv5kq5gQDGp9ApDXyR8I8l6SQRbLl_UT8kHuY,1078
8
+ aws_cdk.cx_api-2.177.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
9
+ aws_cdk.cx_api-2.177.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
10
+ aws_cdk.cx_api-2.177.0.dist-info/RECORD,,
@@ -1,10 +0,0 @@
1
- aws_cdk/cx_api/__init__.py,sha256=1toL4478jY2AWOaotwyWt782VZ4CAQAADwp_6GXY3vE,190328
2
- aws_cdk/cx_api/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
- aws_cdk/cx_api/_jsii/__init__.py,sha256=InQLJAojJqJpQ2kEG3AG3o9yqJK2YHedIM91rJVxvQQ,1434
4
- aws_cdk/cx_api/_jsii/cx-api@2.175.1.jsii.tgz,sha256=QpzaF2UoYUceiD8Y0tr32gcNgPTxFhd6Ib-hWex9MmA,231855
5
- aws_cdk.cx_api-2.175.1.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
6
- aws_cdk.cx_api-2.175.1.dist-info/METADATA,sha256=ZP-RWcXmaxzUIY2841lZe2eovpgWWfZGSMP8-d9NPx4,19677
7
- aws_cdk.cx_api-2.175.1.dist-info/NOTICE,sha256=ADLo99tv5kq5gQDGp9ApDXyR8I8l6SQRbLl_UT8kHuY,1078
8
- aws_cdk.cx_api-2.175.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
9
- aws_cdk.cx_api-2.175.1.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
10
- aws_cdk.cx_api-2.175.1.dist-info/RECORD,,