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

@@ -311,6 +311,20 @@ When this feature flag is enabled and calling KMS key grant method, the created
311
311
  }
312
312
  ```
313
313
 
314
+ * `@aws-cdk/aws-kms:applyImportedAliasPermissionsToPrincipal`
315
+
316
+ Enable grant methods on imported KMS Aliases to apply permissions scoped by the alias using the `kms:ResourceAliases` condition key. When this flag is disabled, grant* methods on `Alias.fromAliasName` remain no-ops to preserve existing behavior.
317
+
318
+ *cdk.json*
319
+
320
+ ```json
321
+ {
322
+ "context": {
323
+ "@aws-cdk/aws-kms:applyImportedAliasPermissionsToPrincipal": true
324
+ }
325
+ }
326
+ ```
327
+
314
328
  * `@aws-cdk/aws-eks:nodegroupNameAttribute`
315
329
 
316
330
  When enabled, nodegroupName attribute of the provisioned EKS NodeGroup will not have the cluster name prefix.
@@ -595,6 +609,215 @@ thumbprints from unsecure connnections.
595
609
  }
596
610
  }
597
611
  ```
612
+
613
+ * `@aws-cdk/core:enableAdditionalMetadataCollection`
614
+
615
+ When this feature flag is enabled, CDK expands the scope of usage data collection to include the:
616
+
617
+ * 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.
618
+ * 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.
619
+ * L2 construct method usage - Collection method name, parameter keys and parameter values of BOOL and ENUM type.
620
+
621
+ *cdk.json*
622
+
623
+ ```json
624
+ {
625
+ "context": {
626
+ "@aws-cdk/core:enableAdditionalMetadataCollection": true
627
+ }
628
+ }
629
+ ```
630
+
631
+ * `@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy`
632
+
633
+ [Deprecated default feature] When this feature flag is enabled, Lambda will create new inline policies with AddToRolePolicy.
634
+ The purpose of this is to prevent lambda from creating a dependency on the Default Policy Statement.
635
+ This solves an issue where a circular dependency could occur if adding lambda to something like a Cognito Trigger, then adding the User Pool to the lambda execution role permissions.
636
+ However in the current implementation, we have removed a dependency of the lambda function on the policy. In addition to this, a Role will be attached to the Policy instead of an inline policy being attached to the role.
637
+ This will create a data race condition in the CloudFormation template because the creation of the Lambda function no longer waits for the policy to be created. Having said that, we are not deprecating the feature (we are defaulting the feature flag to false for new stacks) since this feature can still be used to get around the circular dependency issue (issue-7016) particularly in cases where the lambda resource creation doesnt need to depend on the policy resource creation.
638
+ We recommend to unset the feature flag if already set which will restore the original behavior.
639
+
640
+ *cdk.json*
641
+
642
+ ```json
643
+ {
644
+ "context": {
645
+ "@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy": false
646
+ }
647
+ }
648
+ ```
649
+
650
+ * `@aws-cdk/aws-s3:setUniqueReplicationRoleName`
651
+
652
+ When this feature flag is enabled, a unique role name is specified only when performing cross-account replication.
653
+ When disabled, 'CDKReplicationRole' is always specified.
654
+
655
+ *cdk.json*
656
+
657
+ ```json
658
+ {
659
+ "context": {
660
+ "@aws-cdk/aws-s3:setUniqueReplicationRoleName": true
661
+ }
662
+ }
663
+ ```
664
+
665
+ * `@aws-cdk/pipelines:reduceStageRoleTrustScope`
666
+
667
+ When this feature flag is enabled, the root account principal will not be added to the trust policy of stage role.
668
+ When this feature flag is disabled, it will keep the root account principal in the trust policy.
669
+
670
+ *cdk.json*
671
+
672
+ ```json
673
+ {
674
+ "context": {
675
+ "@aws-cdk/pipelines:reduceStageRoleTrustScope": true
676
+ }
677
+ }
678
+ ```
679
+
680
+ * `@aws-cdk/aws-events:requireEventBusPolicySid`
681
+
682
+ When this flag is enabled:
683
+
684
+ * Resource policies will be created with Statement IDs for service principals
685
+ * The operation will succeed as expected
686
+
687
+ When this flag is disabled:
688
+
689
+ * A warning will be emitted
690
+ * The grant operation will be dropped
691
+ * No permissions will be added
692
+
693
+ *cdk.json*
694
+
695
+ ```json
696
+ {
697
+ "context": {
698
+ "@aws-cdk/aws-events:requireEventBusPolicySid": true
699
+ }
700
+ }
701
+ ```
702
+
703
+ * `@aws-cdk/aws-dynamodb:retainTableReplica`
704
+
705
+ Currently, table replica will always be deleted when stack deletes regardless of source table's deletion policy.
706
+ When enabled, table replica will be default to the removal policy of source table unless specified otherwise.
707
+
708
+ *cdk.json*
709
+
710
+ ```json
711
+ {
712
+ "context": {
713
+ "@aws-cdk/aws-dynamodb:retainTableReplica": true
714
+ }
715
+ }
716
+ ```
717
+
718
+ * `@aws-cdk/cognito:logUserPoolClientSecretValue`
719
+
720
+ When this feature flag is enabled, the SDK API call response to desribe user pool client values will be logged in the custom
721
+ resource lambda function logs.
722
+
723
+ When this feature flag is disabled, the SDK API call response to describe user pool client values will not be logged in the custom
724
+ resource lambda function logs.
725
+
726
+ *cdk.json*
727
+
728
+ ```json
729
+ {
730
+ "context": {
731
+ "@aws-cdk/cognito:logUserPoolClientSecretValue": true
732
+ }
733
+ }
734
+ ```
735
+
736
+ * `@aws-cdk/aws-s3:publicAccessBlockedByDefault`
737
+
738
+ When BlockPublicAccess is not set at all, s3's default behavior will be to set all options to true in aws console.
739
+ The previous behavior in cdk before this feature was; if only some of the BlockPublicAccessOptions were set (not all 4), then the ones undefined would default to false.
740
+ This is counter intuitive to the console behavior where the options would start in true state and a user would uncheck the boxes as needed.
741
+ The new behavior from this feature will allow a user, for example, to set 1 of the 4 BlockPublicAccessOpsions to false, and on deployment the other 3 will remain true.
742
+
743
+ *cdk.json*
744
+
745
+ ```json
746
+ {
747
+ "context": {
748
+ "@aws-cdk/aws-s3:publicAccessBlockedByDefault": true
749
+ }
750
+ }
751
+ ```
752
+
753
+ * `@aws-cdk/aws-ec2:requirePrivateSubnetsForEgressOnlyInternetGateway`
754
+
755
+ When this feature flag is enabled, EgressOnlyGateway is created only for dual-stack VPC with private subnets
756
+
757
+ When this feature flag is disabled, EgressOnlyGateway resource is created for all dual-stack VPC regardless of subnet type
758
+
759
+ *cdk.json*
760
+
761
+ ```json
762
+ {
763
+ "context": {
764
+ "@aws-cdk/aws-ec2:requirePrivateSubnetsForEgressOnlyInternetGateway": true
765
+ }
766
+ }
767
+ ```
768
+
769
+ * `@aws-cdk/aws-stepfunctions-tasks:httpInvokeDynamicJsonPathEndpoint`
770
+
771
+ When this feature flag is enabled, the JSONPath apiEndpoint value will be resolved dynamically at runtime, while slightly increasing the size of the state machine definition.
772
+ When disabled, the JSONPath apiEndpoint property will only support a static string value.
773
+
774
+ _cdk.json
775
+
776
+ ```json
777
+ {
778
+ "context": {
779
+ "@aws-cdk/aws-stepfunctions-tasks:httpInvokeDynamicJsonPathEndpoint": true
780
+ }
781
+ }
782
+ ```
783
+
784
+ * `@aws-cdk/aws-signer:signingProfileNamePassedToCfn`
785
+
786
+ When this feature flag is enabled, the `signingProfileName` property is passed to the L1 `CfnSigningProfile` construct,
787
+ which ensures that the AWS Signer profile is created with the specified name.
788
+
789
+ When this feature flag is disabled, the `signingProfileName` is not passed to CloudFormation, maintaining backward
790
+ compatibility with existing deployments where CloudFormation auto-generated profile names.
791
+
792
+ This feature flag is needed because enabling it can cause existing signing profiles to be
793
+ replaced during deployment if a `signingProfileName` was specified but not previously used
794
+ in the CloudFormation template.
795
+
796
+ *cdk.json*
797
+
798
+ ```json
799
+ {
800
+ "context": {
801
+ "@aws-cdk/aws-signer:signingProfileNamePassedToCfn": true
802
+ }
803
+ }
804
+ ```
805
+
806
+ * `@aws-cdk/aws-ecs-patterns:uniqueTargetGroupId`
807
+
808
+ When enabled, ECS patterns will generate unique target group IDs that include the load balancer name and type (public/private). This prevents CloudFormation conflicts when switching between public and private load balancers.
809
+
810
+ Without this flag, switching an ApplicationLoadBalancedFargateService from public to private (or vice versa) fails with "target group cannot be associated with more than one load balancer" error.
811
+
812
+ *cdk.json*
813
+
814
+ ```json
815
+ {
816
+ "context": {
817
+ "@aws-cdk/aws-ecs-patterns:uniqueTargetGroupId": true
818
+ }
819
+ }
820
+ ```
598
821
  '''
599
822
  from pkgutil import extend_path
600
823
  __path__ = extend_path(__path__, __name__)
@@ -881,14 +1104,14 @@ class CloudArtifact(metaclass=jsii.JSIIMeta, jsii_type="@aws-cdk/cx-api.CloudArt
881
1104
  display_name: typing.Optional[builtins.str] = None,
882
1105
  environment: typing.Optional[builtins.str] = None,
883
1106
  metadata: typing.Optional[typing.Mapping[builtins.str, typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry, typing.Dict[builtins.str, typing.Any]]]]] = None,
884
- properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
1107
+ properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FeatureFlagReportProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
885
1108
  ) -> None:
886
1109
  '''
887
1110
  :param assembly: -
888
1111
  :param id: -
889
1112
  :param type: The type of artifact.
890
1113
  :param dependencies: IDs of artifacts that must be deployed before this artifact. Default: - no dependencies.
891
- :param display_name: A string that represents this artifact. Should only be used in user interfaces. Default: - no display name
1114
+ :param display_name: A string that can be shown to a user to uniquely identify this artifact inside a cloud assembly tree. Is used by the CLI to present a list of stacks to the user in a way that makes sense to them. Even though the property name "display name" doesn't imply it, this field is used to select stacks as well, so all stacks should have a unique display name. Default: - no display name
892
1115
  :param environment: The environment into which this artifact is deployed. Default: - no envrionment.
893
1116
  :param metadata: Associated metadata. Default: - no metadata.
894
1117
  :param properties: The set of properties for this artifact (depends on type). Default: - no properties.
@@ -920,7 +1143,7 @@ class CloudArtifact(metaclass=jsii.JSIIMeta, jsii_type="@aws-cdk/cx-api.CloudArt
920
1143
  display_name: typing.Optional[builtins.str] = None,
921
1144
  environment: typing.Optional[builtins.str] = None,
922
1145
  metadata: typing.Optional[typing.Mapping[builtins.str, typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry, typing.Dict[builtins.str, typing.Any]]]]] = None,
923
- properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
1146
+ properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FeatureFlagReportProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
924
1147
  ) -> typing.Optional["CloudArtifact"]:
925
1148
  '''Returns a subclass of ``CloudArtifact`` based on the artifact type defined in the artifact manifest.
926
1149
 
@@ -928,7 +1151,7 @@ class CloudArtifact(metaclass=jsii.JSIIMeta, jsii_type="@aws-cdk/cx-api.CloudArt
928
1151
  :param id: The artifact ID.
929
1152
  :param type: The type of artifact.
930
1153
  :param dependencies: IDs of artifacts that must be deployed before this artifact. Default: - no dependencies.
931
- :param display_name: A string that represents this artifact. Should only be used in user interfaces. Default: - no display name
1154
+ :param display_name: A string that can be shown to a user to uniquely identify this artifact inside a cloud assembly tree. Is used by the CLI to present a list of stacks to the user in a way that makes sense to them. Even though the property name "display name" doesn't imply it, this field is used to select stacks as well, so all stacks should have a unique display name. Default: - no display name
932
1155
  :param environment: The environment into which this artifact is deployed. Default: - no envrionment.
933
1156
  :param metadata: Associated metadata. Default: - no metadata.
934
1157
  :param properties: The set of properties for this artifact (depends on type). Default: - no properties.
@@ -1272,14 +1495,14 @@ class CloudAssemblyBuilder(
1272
1495
  display_name: typing.Optional[builtins.str] = None,
1273
1496
  environment: typing.Optional[builtins.str] = None,
1274
1497
  metadata: typing.Optional[typing.Mapping[builtins.str, typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry, typing.Dict[builtins.str, typing.Any]]]]] = None,
1275
- properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
1498
+ properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FeatureFlagReportProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
1276
1499
  ) -> None:
1277
1500
  '''Adds an artifact into the cloud assembly.
1278
1501
 
1279
1502
  :param id: The ID of the artifact.
1280
1503
  :param type: The type of artifact.
1281
1504
  :param dependencies: IDs of artifacts that must be deployed before this artifact. Default: - no dependencies.
1282
- :param display_name: A string that represents this artifact. Should only be used in user interfaces. Default: - no display name
1505
+ :param display_name: A string that can be shown to a user to uniquely identify this artifact inside a cloud assembly tree. Is used by the CLI to present a list of stacks to the user in a way that makes sense to them. Even though the property name "display name" doesn't imply it, this field is used to select stacks as well, so all stacks should have a unique display name. Default: - no display name
1283
1506
  :param environment: The environment into which this artifact is deployed. Default: - no envrionment.
1284
1507
  :param metadata: Associated metadata. Default: - no metadata.
1285
1508
  :param properties: The set of properties for this artifact (depends on type). Default: - no properties.
@@ -1303,7 +1526,7 @@ class CloudAssemblyBuilder(
1303
1526
  self,
1304
1527
  *,
1305
1528
  key: builtins.str,
1306
- props: typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AmiContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AvailabilityZonesContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.HostedZoneContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.SSMParameterContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.VpcContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.EndpointServiceAvailabilityZonesContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.LoadBalancerContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.LoadBalancerListenerContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.SecurityGroupContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.KeyContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.PluginContextQuery, typing.Dict[builtins.str, typing.Any]]],
1529
+ props: typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AmiContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AvailabilityZonesContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.HostedZoneContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.SSMParameterContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.VpcContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.EndpointServiceAvailabilityZonesContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.LoadBalancerContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.LoadBalancerListenerContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.SecurityGroupContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.KeyContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.CcApiContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.PluginContextQuery, typing.Dict[builtins.str, typing.Any]]],
1307
1530
  provider: _aws_cdk_cloud_assembly_schema_cae1d136.ContextProvider,
1308
1531
  ) -> None:
1309
1532
  '''Reports that some context is missing in order for this cloud assembly to be fully synthesized.
@@ -1521,14 +1744,14 @@ class CloudFormationStackArtifact(
1521
1744
  display_name: typing.Optional[builtins.str] = None,
1522
1745
  environment: typing.Optional[builtins.str] = None,
1523
1746
  metadata: typing.Optional[typing.Mapping[builtins.str, typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry, typing.Dict[builtins.str, typing.Any]]]]] = None,
1524
- properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
1747
+ properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FeatureFlagReportProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
1525
1748
  ) -> None:
1526
1749
  '''
1527
1750
  :param assembly: -
1528
1751
  :param artifact_id: -
1529
1752
  :param type: The type of artifact.
1530
1753
  :param dependencies: IDs of artifacts that must be deployed before this artifact. Default: - no dependencies.
1531
- :param display_name: A string that represents this artifact. Should only be used in user interfaces. Default: - no display name
1754
+ :param display_name: A string that can be shown to a user to uniquely identify this artifact inside a cloud assembly tree. Is used by the CLI to present a list of stacks to the user in a way that makes sense to them. Even though the property name "display name" doesn't imply it, this field is used to select stacks as well, so all stacks should have a unique display name. Default: - no display name
1532
1755
  :param environment: The environment into which this artifact is deployed. Default: - no envrionment.
1533
1756
  :param metadata: Associated metadata. Default: - no metadata.
1534
1757
  :param properties: The set of properties for this artifact (depends on type). Default: - no properties.
@@ -2827,14 +3050,14 @@ class NestedCloudAssemblyArtifact(
2827
3050
  display_name: typing.Optional[builtins.str] = None,
2828
3051
  environment: typing.Optional[builtins.str] = None,
2829
3052
  metadata: typing.Optional[typing.Mapping[builtins.str, typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry, typing.Dict[builtins.str, typing.Any]]]]] = None,
2830
- properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
3053
+ properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FeatureFlagReportProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
2831
3054
  ) -> None:
2832
3055
  '''
2833
3056
  :param assembly: -
2834
3057
  :param name: -
2835
3058
  :param type: The type of artifact.
2836
3059
  :param dependencies: IDs of artifacts that must be deployed before this artifact. Default: - no dependencies.
2837
- :param display_name: A string that represents this artifact. Should only be used in user interfaces. Default: - no display name
3060
+ :param display_name: A string that can be shown to a user to uniquely identify this artifact inside a cloud assembly tree. Is used by the CLI to present a list of stacks to the user in a way that makes sense to them. Even though the property name "display name" doesn't imply it, this field is used to select stacks as well, so all stacks should have a unique display name. Default: - no display name
2838
3061
  :param environment: The environment into which this artifact is deployed. Default: - no envrionment.
2839
3062
  :param metadata: Associated metadata. Default: - no metadata.
2840
3063
  :param properties: The set of properties for this artifact (depends on type). Default: - no properties.
@@ -3210,14 +3433,14 @@ class TreeCloudArtifact(
3210
3433
  display_name: typing.Optional[builtins.str] = None,
3211
3434
  environment: typing.Optional[builtins.str] = None,
3212
3435
  metadata: typing.Optional[typing.Mapping[builtins.str, typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry, typing.Dict[builtins.str, typing.Any]]]]] = None,
3213
- properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
3436
+ properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FeatureFlagReportProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
3214
3437
  ) -> None:
3215
3438
  '''
3216
3439
  :param assembly: -
3217
3440
  :param name: -
3218
3441
  :param type: The type of artifact.
3219
3442
  :param dependencies: IDs of artifacts that must be deployed before this artifact. Default: - no dependencies.
3220
- :param display_name: A string that represents this artifact. Should only be used in user interfaces. Default: - no display name
3443
+ :param display_name: A string that can be shown to a user to uniquely identify this artifact inside a cloud assembly tree. Is used by the CLI to present a list of stacks to the user in a way that makes sense to them. Even though the property name "display name" doesn't imply it, this field is used to select stacks as well, so all stacks should have a unique display name. Default: - no display name
3221
3444
  :param environment: The environment into which this artifact is deployed. Default: - no envrionment.
3222
3445
  :param metadata: Associated metadata. Default: - no metadata.
3223
3446
  :param properties: The set of properties for this artifact (depends on type). Default: - no properties.
@@ -3870,14 +4093,14 @@ class AssetManifestArtifact(
3870
4093
  display_name: typing.Optional[builtins.str] = None,
3871
4094
  environment: typing.Optional[builtins.str] = None,
3872
4095
  metadata: typing.Optional[typing.Mapping[builtins.str, typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry, typing.Dict[builtins.str, typing.Any]]]]] = None,
3873
- properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
4096
+ properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FeatureFlagReportProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
3874
4097
  ) -> None:
3875
4098
  '''
3876
4099
  :param assembly: -
3877
4100
  :param name: -
3878
4101
  :param type: The type of artifact.
3879
4102
  :param dependencies: IDs of artifacts that must be deployed before this artifact. Default: - no dependencies.
3880
- :param display_name: A string that represents this artifact. Should only be used in user interfaces. Default: - no display name
4103
+ :param display_name: A string that can be shown to a user to uniquely identify this artifact inside a cloud assembly tree. Is used by the CLI to present a list of stacks to the user in a way that makes sense to them. Even though the property name "display name" doesn't imply it, this field is used to select stacks as well, so all stacks should have a unique display name. Default: - no display name
3881
4104
  :param environment: The environment into which this artifact is deployed. Default: - no envrionment.
3882
4105
  :param metadata: Associated metadata. Default: - no metadata.
3883
4106
  :param properties: The set of properties for this artifact (depends on type). Default: - no properties.
@@ -4013,7 +4236,7 @@ def _typecheckingstub__1ed62a7c2247dd4c625ec6c28ed3100e2bf8bc293ce9accfb5aa199e5
4013
4236
  display_name: typing.Optional[builtins.str] = None,
4014
4237
  environment: typing.Optional[builtins.str] = None,
4015
4238
  metadata: typing.Optional[typing.Mapping[builtins.str, typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry, typing.Dict[builtins.str, typing.Any]]]]] = None,
4016
- properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
4239
+ properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FeatureFlagReportProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
4017
4240
  ) -> None:
4018
4241
  """Type checking stubs"""
4019
4242
  pass
@@ -4027,7 +4250,7 @@ def _typecheckingstub__9a9e7172494e8d6e1062852f66a87eb480f31763995170a9b158baa1f
4027
4250
  display_name: typing.Optional[builtins.str] = None,
4028
4251
  environment: typing.Optional[builtins.str] = None,
4029
4252
  metadata: typing.Optional[typing.Mapping[builtins.str, typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry, typing.Dict[builtins.str, typing.Any]]]]] = None,
4030
- properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
4253
+ properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FeatureFlagReportProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
4031
4254
  ) -> None:
4032
4255
  """Type checking stubs"""
4033
4256
  pass
@@ -4107,7 +4330,7 @@ def _typecheckingstub__46e80c3b6bfd97977edd543650bf180354083f8f8ac476e020cef1381
4107
4330
  display_name: typing.Optional[builtins.str] = None,
4108
4331
  environment: typing.Optional[builtins.str] = None,
4109
4332
  metadata: typing.Optional[typing.Mapping[builtins.str, typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry, typing.Dict[builtins.str, typing.Any]]]]] = None,
4110
- properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
4333
+ properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FeatureFlagReportProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
4111
4334
  ) -> None:
4112
4335
  """Type checking stubs"""
4113
4336
  pass
@@ -4136,7 +4359,7 @@ def _typecheckingstub__e4221f8243cf17c04683af8c1bce956c1e255ee17738e4524551c6505
4136
4359
  display_name: typing.Optional[builtins.str] = None,
4137
4360
  environment: typing.Optional[builtins.str] = None,
4138
4361
  metadata: typing.Optional[typing.Mapping[builtins.str, typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry, typing.Dict[builtins.str, typing.Any]]]]] = None,
4139
- properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
4362
+ properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FeatureFlagReportProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
4140
4363
  ) -> None:
4141
4364
  """Type checking stubs"""
4142
4365
  pass
@@ -4276,7 +4499,7 @@ def _typecheckingstub__1aa6af50763dddea1d45ad3308472b2d2ff5763ed26b8f4919b6ff417
4276
4499
  display_name: typing.Optional[builtins.str] = None,
4277
4500
  environment: typing.Optional[builtins.str] = None,
4278
4501
  metadata: typing.Optional[typing.Mapping[builtins.str, typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry, typing.Dict[builtins.str, typing.Any]]]]] = None,
4279
- properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
4502
+ properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FeatureFlagReportProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
4280
4503
  ) -> None:
4281
4504
  """Type checking stubs"""
4282
4505
  pass
@@ -4320,7 +4543,7 @@ def _typecheckingstub__d44839b2c4ac38a89725b61338793da24a9add3afea876d70e9f06e98
4320
4543
  display_name: typing.Optional[builtins.str] = None,
4321
4544
  environment: typing.Optional[builtins.str] = None,
4322
4545
  metadata: typing.Optional[typing.Mapping[builtins.str, typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry, typing.Dict[builtins.str, typing.Any]]]]] = None,
4323
- properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
4546
+ properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FeatureFlagReportProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
4324
4547
  ) -> None:
4325
4548
  """Type checking stubs"""
4326
4549
  pass
@@ -4381,7 +4604,7 @@ def _typecheckingstub__2f357f6d07a16e0dfa09eb27eac736f3cba2a46289700a94afedb335c
4381
4604
  display_name: typing.Optional[builtins.str] = None,
4382
4605
  environment: typing.Optional[builtins.str] = None,
4383
4606
  metadata: typing.Optional[typing.Mapping[builtins.str, typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry, typing.Dict[builtins.str, typing.Any]]]]] = None,
4384
- properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
4607
+ properties: typing.Optional[typing.Union[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AwsCloudFormationStackProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.AssetManifestProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.TreeArtifactProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.NestedCloudAssemblyProperties, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FeatureFlagReportProperties, typing.Dict[builtins.str, typing.Any]]]] = None,
4385
4608
  ) -> None:
4386
4609
  """Type checking stubs"""
4387
4610
  pass
@@ -4391,3 +4614,6 @@ def _typecheckingstub__0f13a4defa9d74d578442cc9dbb25cbe53318785930cd66e40d43ac92
4391
4614
  ) -> None:
4392
4615
  """Type checking stubs"""
4393
4616
  pass
4617
+
4618
+ for cls in [IEnvironmentPlaceholderProvider]:
4619
+ typing.cast(typing.Any, cls).__protocol_attrs__ = typing.cast(typing.Any, cls).__protocol_attrs__ - set(['__jsii_proxy_class__', '__jsii_type__'])
@@ -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.177.0", __name__[0:-6], "cx-api@2.177.0.jsii.tgz"
34
+ "@aws-cdk/cx-api", "2.228.0", __name__[0:-6], "cx-api@2.228.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.177.0
3
+ Version: 2.228.0
4
4
  Summary: Cloud executable protocol
5
5
  Home-page: https://github.com/aws/aws-cdk
6
6
  Author: Amazon Web Services
@@ -10,7 +10,6 @@ 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
@@ -19,14 +18,14 @@ Classifier: Development Status :: 5 - Production/Stable
19
18
  Classifier: License :: OSI Approved
20
19
  Classifier: Framework :: AWS CDK
21
20
  Classifier: Framework :: AWS CDK :: 2
22
- Requires-Python: ~=3.8
21
+ Requires-Python: ~=3.9
23
22
  Description-Content-Type: text/markdown
24
23
  License-File: LICENSE
25
24
  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
25
+ Requires-Dist: aws-cdk.cloud-assembly-schema >=45.0.0
26
+ Requires-Dist: jsii <2.0.0,>=1.119.0
27
+ Requires-Dist: publication >=0.0.3
28
+ Requires-Dist: typeguard <4.3.0,>=2.13.3
30
29
 
31
30
  # Cloud Executable API
32
31
 
@@ -340,6 +339,20 @@ When this feature flag is enabled and calling KMS key grant method, the created
340
339
  }
341
340
  ```
342
341
 
342
+ * `@aws-cdk/aws-kms:applyImportedAliasPermissionsToPrincipal`
343
+
344
+ Enable grant methods on imported KMS Aliases to apply permissions scoped by the alias using the `kms:ResourceAliases` condition key. When this flag is disabled, grant* methods on `Alias.fromAliasName` remain no-ops to preserve existing behavior.
345
+
346
+ *cdk.json*
347
+
348
+ ```json
349
+ {
350
+ "context": {
351
+ "@aws-cdk/aws-kms:applyImportedAliasPermissionsToPrincipal": true
352
+ }
353
+ }
354
+ ```
355
+
343
356
  * `@aws-cdk/aws-eks:nodegroupNameAttribute`
344
357
 
345
358
  When enabled, nodegroupName attribute of the provisioned EKS NodeGroup will not have the cluster name prefix.
@@ -624,3 +637,212 @@ thumbprints from unsecure connnections.
624
637
  }
625
638
  }
626
639
  ```
640
+
641
+ * `@aws-cdk/core:enableAdditionalMetadataCollection`
642
+
643
+ When this feature flag is enabled, CDK expands the scope of usage data collection to include the:
644
+
645
+ * 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.
646
+ * 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.
647
+ * L2 construct method usage - Collection method name, parameter keys and parameter values of BOOL and ENUM type.
648
+
649
+ *cdk.json*
650
+
651
+ ```json
652
+ {
653
+ "context": {
654
+ "@aws-cdk/core:enableAdditionalMetadataCollection": true
655
+ }
656
+ }
657
+ ```
658
+
659
+ * `@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy`
660
+
661
+ [Deprecated default feature] When this feature flag is enabled, Lambda will create new inline policies with AddToRolePolicy.
662
+ The purpose of this is to prevent lambda from creating a dependency on the Default Policy Statement.
663
+ This solves an issue where a circular dependency could occur if adding lambda to something like a Cognito Trigger, then adding the User Pool to the lambda execution role permissions.
664
+ However in the current implementation, we have removed a dependency of the lambda function on the policy. In addition to this, a Role will be attached to the Policy instead of an inline policy being attached to the role.
665
+ This will create a data race condition in the CloudFormation template because the creation of the Lambda function no longer waits for the policy to be created. Having said that, we are not deprecating the feature (we are defaulting the feature flag to false for new stacks) since this feature can still be used to get around the circular dependency issue (issue-7016) particularly in cases where the lambda resource creation doesnt need to depend on the policy resource creation.
666
+ We recommend to unset the feature flag if already set which will restore the original behavior.
667
+
668
+ *cdk.json*
669
+
670
+ ```json
671
+ {
672
+ "context": {
673
+ "@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy": false
674
+ }
675
+ }
676
+ ```
677
+
678
+ * `@aws-cdk/aws-s3:setUniqueReplicationRoleName`
679
+
680
+ When this feature flag is enabled, a unique role name is specified only when performing cross-account replication.
681
+ When disabled, 'CDKReplicationRole' is always specified.
682
+
683
+ *cdk.json*
684
+
685
+ ```json
686
+ {
687
+ "context": {
688
+ "@aws-cdk/aws-s3:setUniqueReplicationRoleName": true
689
+ }
690
+ }
691
+ ```
692
+
693
+ * `@aws-cdk/pipelines:reduceStageRoleTrustScope`
694
+
695
+ When this feature flag is enabled, the root account principal will not be added to the trust policy of stage role.
696
+ When this feature flag is disabled, it will keep the root account principal in the trust policy.
697
+
698
+ *cdk.json*
699
+
700
+ ```json
701
+ {
702
+ "context": {
703
+ "@aws-cdk/pipelines:reduceStageRoleTrustScope": true
704
+ }
705
+ }
706
+ ```
707
+
708
+ * `@aws-cdk/aws-events:requireEventBusPolicySid`
709
+
710
+ When this flag is enabled:
711
+
712
+ * Resource policies will be created with Statement IDs for service principals
713
+ * The operation will succeed as expected
714
+
715
+ When this flag is disabled:
716
+
717
+ * A warning will be emitted
718
+ * The grant operation will be dropped
719
+ * No permissions will be added
720
+
721
+ *cdk.json*
722
+
723
+ ```json
724
+ {
725
+ "context": {
726
+ "@aws-cdk/aws-events:requireEventBusPolicySid": true
727
+ }
728
+ }
729
+ ```
730
+
731
+ * `@aws-cdk/aws-dynamodb:retainTableReplica`
732
+
733
+ Currently, table replica will always be deleted when stack deletes regardless of source table's deletion policy.
734
+ When enabled, table replica will be default to the removal policy of source table unless specified otherwise.
735
+
736
+ *cdk.json*
737
+
738
+ ```json
739
+ {
740
+ "context": {
741
+ "@aws-cdk/aws-dynamodb:retainTableReplica": true
742
+ }
743
+ }
744
+ ```
745
+
746
+ * `@aws-cdk/cognito:logUserPoolClientSecretValue`
747
+
748
+ When this feature flag is enabled, the SDK API call response to desribe user pool client values will be logged in the custom
749
+ resource lambda function logs.
750
+
751
+ When this feature flag is disabled, the SDK API call response to describe user pool client values will not be logged in the custom
752
+ resource lambda function logs.
753
+
754
+ *cdk.json*
755
+
756
+ ```json
757
+ {
758
+ "context": {
759
+ "@aws-cdk/cognito:logUserPoolClientSecretValue": true
760
+ }
761
+ }
762
+ ```
763
+
764
+ * `@aws-cdk/aws-s3:publicAccessBlockedByDefault`
765
+
766
+ When BlockPublicAccess is not set at all, s3's default behavior will be to set all options to true in aws console.
767
+ The previous behavior in cdk before this feature was; if only some of the BlockPublicAccessOptions were set (not all 4), then the ones undefined would default to false.
768
+ This is counter intuitive to the console behavior where the options would start in true state and a user would uncheck the boxes as needed.
769
+ The new behavior from this feature will allow a user, for example, to set 1 of the 4 BlockPublicAccessOpsions to false, and on deployment the other 3 will remain true.
770
+
771
+ *cdk.json*
772
+
773
+ ```json
774
+ {
775
+ "context": {
776
+ "@aws-cdk/aws-s3:publicAccessBlockedByDefault": true
777
+ }
778
+ }
779
+ ```
780
+
781
+ * `@aws-cdk/aws-ec2:requirePrivateSubnetsForEgressOnlyInternetGateway`
782
+
783
+ When this feature flag is enabled, EgressOnlyGateway is created only for dual-stack VPC with private subnets
784
+
785
+ When this feature flag is disabled, EgressOnlyGateway resource is created for all dual-stack VPC regardless of subnet type
786
+
787
+ *cdk.json*
788
+
789
+ ```json
790
+ {
791
+ "context": {
792
+ "@aws-cdk/aws-ec2:requirePrivateSubnetsForEgressOnlyInternetGateway": true
793
+ }
794
+ }
795
+ ```
796
+
797
+ * `@aws-cdk/aws-stepfunctions-tasks:httpInvokeDynamicJsonPathEndpoint`
798
+
799
+ When this feature flag is enabled, the JSONPath apiEndpoint value will be resolved dynamically at runtime, while slightly increasing the size of the state machine definition.
800
+ When disabled, the JSONPath apiEndpoint property will only support a static string value.
801
+
802
+ _cdk.json
803
+
804
+ ```json
805
+ {
806
+ "context": {
807
+ "@aws-cdk/aws-stepfunctions-tasks:httpInvokeDynamicJsonPathEndpoint": true
808
+ }
809
+ }
810
+ ```
811
+
812
+ * `@aws-cdk/aws-signer:signingProfileNamePassedToCfn`
813
+
814
+ When this feature flag is enabled, the `signingProfileName` property is passed to the L1 `CfnSigningProfile` construct,
815
+ which ensures that the AWS Signer profile is created with the specified name.
816
+
817
+ When this feature flag is disabled, the `signingProfileName` is not passed to CloudFormation, maintaining backward
818
+ compatibility with existing deployments where CloudFormation auto-generated profile names.
819
+
820
+ This feature flag is needed because enabling it can cause existing signing profiles to be
821
+ replaced during deployment if a `signingProfileName` was specified but not previously used
822
+ in the CloudFormation template.
823
+
824
+ *cdk.json*
825
+
826
+ ```json
827
+ {
828
+ "context": {
829
+ "@aws-cdk/aws-signer:signingProfileNamePassedToCfn": true
830
+ }
831
+ }
832
+ ```
833
+
834
+ * `@aws-cdk/aws-ecs-patterns:uniqueTargetGroupId`
835
+
836
+ When enabled, ECS patterns will generate unique target group IDs that include the load balancer name and type (public/private). This prevents CloudFormation conflicts when switching between public and private load balancers.
837
+
838
+ Without this flag, switching an ApplicationLoadBalancedFargateService from public to private (or vice versa) fails with "target group cannot be associated with more than one load balancer" error.
839
+
840
+ *cdk.json*
841
+
842
+ ```json
843
+ {
844
+ "context": {
845
+ "@aws-cdk/aws-ecs-patterns:uniqueTargetGroupId": true
846
+ }
847
+ }
848
+ ```
@@ -0,0 +1,10 @@
1
+ aws_cdk/cx_api/__init__.py,sha256=jtd-XCsgYDTX-ct3yctrj5ww0KH79cFG_S-JJmaPOUw,204545
2
+ aws_cdk/cx_api/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
+ aws_cdk/cx_api/_jsii/__init__.py,sha256=kAHMSVNBDOFgyZFSdqLZwfe9qkoyRylqAWHIPQpyG50,1434
4
+ aws_cdk/cx_api/_jsii/cx-api@2.228.0.jsii.tgz,sha256=OC0iWKfeJ3hMJXmwxyOnxzl8zfzVOODcbGqQhsMF1Mg,268316
5
+ aws_cdk_cx_api-2.228.0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
6
+ aws_cdk_cx_api-2.228.0.dist-info/METADATA,sha256=aq6EBvN07U_yOWDYEtl-tLzPMimjHV4mxGaKmto5pOE,28821
7
+ aws_cdk_cx_api-2.228.0.dist-info/NOTICE,sha256=ADLo99tv5kq5gQDGp9ApDXyR8I8l6SQRbLl_UT8kHuY,1078
8
+ aws_cdk_cx_api-2.228.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
9
+ aws_cdk_cx_api-2.228.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
10
+ aws_cdk_cx_api-2.228.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.45.1)
2
+ Generator: setuptools (75.3.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,10 +0,0 @@
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,,