aws-cdk 2.1100.3 → 2.1102.0

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.
package/README.md CHANGED
@@ -517,6 +517,49 @@ Hotswapping is currently supported for the following changes
517
517
  - Source and Environment changes of AWS CodeBuild Projects.
518
518
  - VTL mapping template changes for AppSync Resolvers and Functions.
519
519
  - Schema changes for AppSync GraphQL Apis.
520
+ - Code files (S3-based) and container image (ECR-based) changes, along with environment variable
521
+ and description changes of Amazon Bedrock AgentCore Runtimes.
522
+ - **Note**: For S3-based code changes to be detected, use `Asset` from `aws-cdk-lib/aws-s3-assets`:
523
+
524
+ ```typescript
525
+ // ✅ Recommended (hotswap works)
526
+ const asset = new aws_s3_assets.Asset(this, 'CodeAsset', {
527
+ path: path.join(__dirname, 'agent-code'),
528
+ });
529
+
530
+ const agentRuntimeArtifact = AgentRuntimeArtifact.fromS3(
531
+ {
532
+ bucketName: asset.s3BucketName,
533
+ objectKey: asset.s3ObjectKey, // Content hash, changes when code changes
534
+ },
535
+ AgentCoreRuntime.PYTHON_3_13,
536
+ ['app.py'],
537
+ );
538
+ new Runtime(this, 'Runtime', {
539
+ runtimeName: 'runtime',
540
+ agentRuntimeArtifact,
541
+ });
542
+ ```
543
+
544
+ - Do not use `Source.asset()` with `BucketDeployment`, as the generated object key is a token resolved at deployment time and does not change in the CloudFormation template (hotswap will not work):
545
+
546
+ ```typescript
547
+ // ❌ Not recommended (hotswap doesn't work)
548
+ const deployment = new aws_s3_deployment.BucketDeployment(this, 'Deploy', {
549
+ sources: [aws_s3_deployment.Source.asset(path.join(__dirname, 'agent-code'))],
550
+ destinationBucket: bucket,
551
+ extract: false,
552
+ });
553
+
554
+ const agentRuntimeArtifact = AgentRuntimeArtifact.fromS3(
555
+ {
556
+ bucketName: bucket.bucketName,
557
+ objectKey: cdk.Fn.select(0, deployment.objectKeys), // Token, resolved at deployment time
558
+ },
559
+ AgentCoreRuntime.PYTHON_3_13,
560
+ ['app.py'],
561
+ );
562
+ ```
520
563
 
521
564
  You can optionally configure the behavior of your hotswap deployments. Currently you can only configure ECS hotswap behavior:
522
565
 
@@ -567,6 +610,14 @@ and might have breaking changes in the future.
567
610
 
568
611
  > *: `Fn::GetAtt` is only partially supported. Refer to [this implementation](https://github.com/aws/aws-cdk-cli/blob/main/packages/aws-cdk/lib/api/cloudformation/evaluate-cloudformation-template.ts#L256-L266) for supported resources and attributes.
569
612
 
613
+
614
+ ##### Deploy flowchart
615
+
616
+ This flowchart provides a high-level overview of the deployment process.
617
+ For technical implementation details (function calls, file locations), see [docs/deploy-architecture.md](./docs/deploy-architecture.md).
618
+
619
+ ![Deploy flowchart](./images/deploy-flowchart.png)
620
+
570
621
  ### `cdk rollback`
571
622
 
572
623
  If a deployment performed using `cdk deploy --no-rollback` fails, your
@@ -822,6 +822,212 @@ The aws-cdk package includes the following third-party software/licensing:
822
822
  limitations under the License.
823
823
 
824
824
 
825
+ ----------------
826
+
827
+ ** @aws-sdk/client-bedrock-agentcore-control@3.953.0 - https://www.npmjs.com/package/@aws-sdk/client-bedrock-agentcore-control/v/3.953.0 | Apache-2.0
828
+ Apache License
829
+ Version 2.0, January 2004
830
+ http://www.apache.org/licenses/
831
+
832
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
833
+
834
+ 1. Definitions.
835
+
836
+ "License" shall mean the terms and conditions for use, reproduction,
837
+ and distribution as defined by Sections 1 through 9 of this document.
838
+
839
+ "Licensor" shall mean the copyright owner or entity authorized by
840
+ the copyright owner that is granting the License.
841
+
842
+ "Legal Entity" shall mean the union of the acting entity and all
843
+ other entities that control, are controlled by, or are under common
844
+ control with that entity. For the purposes of this definition,
845
+ "control" means (i) the power, direct or indirect, to cause the
846
+ direction or management of such entity, whether by contract or
847
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
848
+ outstanding shares, or (iii) beneficial ownership of such entity.
849
+
850
+ "You" (or "Your") shall mean an individual or Legal Entity
851
+ exercising permissions granted by this License.
852
+
853
+ "Source" form shall mean the preferred form for making modifications,
854
+ including but not limited to software source code, documentation
855
+ source, and configuration files.
856
+
857
+ "Object" form shall mean any form resulting from mechanical
858
+ transformation or translation of a Source form, including but
859
+ not limited to compiled object code, generated documentation,
860
+ and conversions to other media types.
861
+
862
+ "Work" shall mean the work of authorship, whether in Source or
863
+ Object form, made available under the License, as indicated by a
864
+ copyright notice that is included in or attached to the work
865
+ (an example is provided in the Appendix below).
866
+
867
+ "Derivative Works" shall mean any work, whether in Source or Object
868
+ form, that is based on (or derived from) the Work and for which the
869
+ editorial revisions, annotations, elaborations, or other modifications
870
+ represent, as a whole, an original work of authorship. For the purposes
871
+ of this License, Derivative Works shall not include works that remain
872
+ separable from, or merely link (or bind by name) to the interfaces of,
873
+ the Work and Derivative Works thereof.
874
+
875
+ "Contribution" shall mean any work of authorship, including
876
+ the original version of the Work and any modifications or additions
877
+ to that Work or Derivative Works thereof, that is intentionally
878
+ submitted to Licensor for inclusion in the Work by the copyright owner
879
+ or by an individual or Legal Entity authorized to submit on behalf of
880
+ the copyright owner. For the purposes of this definition, "submitted"
881
+ means any form of electronic, verbal, or written communication sent
882
+ to the Licensor or its representatives, including but not limited to
883
+ communication on electronic mailing lists, source code control systems,
884
+ and issue tracking systems that are managed by, or on behalf of, the
885
+ Licensor for the purpose of discussing and improving the Work, but
886
+ excluding communication that is conspicuously marked or otherwise
887
+ designated in writing by the copyright owner as "Not a Contribution."
888
+
889
+ "Contributor" shall mean Licensor and any individual or Legal Entity
890
+ on behalf of whom a Contribution has been received by Licensor and
891
+ subsequently incorporated within the Work.
892
+
893
+ 2. Grant of Copyright License. Subject to the terms and conditions of
894
+ this License, each Contributor hereby grants to You a perpetual,
895
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
896
+ copyright license to reproduce, prepare Derivative Works of,
897
+ publicly display, publicly perform, sublicense, and distribute the
898
+ Work and such Derivative Works in Source or Object form.
899
+
900
+ 3. Grant of Patent License. Subject to the terms and conditions of
901
+ this License, each Contributor hereby grants to You a perpetual,
902
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
903
+ (except as stated in this section) patent license to make, have made,
904
+ use, offer to sell, sell, import, and otherwise transfer the Work,
905
+ where such license applies only to those patent claims licensable
906
+ by such Contributor that are necessarily infringed by their
907
+ Contribution(s) alone or by combination of their Contribution(s)
908
+ with the Work to which such Contribution(s) was submitted. If You
909
+ institute patent litigation against any entity (including a
910
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
911
+ or a Contribution incorporated within the Work constitutes direct
912
+ or contributory patent infringement, then any patent licenses
913
+ granted to You under this License for that Work shall terminate
914
+ as of the date such litigation is filed.
915
+
916
+ 4. Redistribution. You may reproduce and distribute copies of the
917
+ Work or Derivative Works thereof in any medium, with or without
918
+ modifications, and in Source or Object form, provided that You
919
+ meet the following conditions:
920
+
921
+ (a) You must give any other recipients of the Work or
922
+ Derivative Works a copy of this License; and
923
+
924
+ (b) You must cause any modified files to carry prominent notices
925
+ stating that You changed the files; and
926
+
927
+ (c) You must retain, in the Source form of any Derivative Works
928
+ that You distribute, all copyright, patent, trademark, and
929
+ attribution notices from the Source form of the Work,
930
+ excluding those notices that do not pertain to any part of
931
+ the Derivative Works; and
932
+
933
+ (d) If the Work includes a "NOTICE" text file as part of its
934
+ distribution, then any Derivative Works that You distribute must
935
+ include a readable copy of the attribution notices contained
936
+ within such NOTICE file, excluding those notices that do not
937
+ pertain to any part of the Derivative Works, in at least one
938
+ of the following places: within a NOTICE text file distributed
939
+ as part of the Derivative Works; within the Source form or
940
+ documentation, if provided along with the Derivative Works; or,
941
+ within a display generated by the Derivative Works, if and
942
+ wherever such third-party notices normally appear. The contents
943
+ of the NOTICE file are for informational purposes only and
944
+ do not modify the License. You may add Your own attribution
945
+ notices within Derivative Works that You distribute, alongside
946
+ or as an addendum to the NOTICE text from the Work, provided
947
+ that such additional attribution notices cannot be construed
948
+ as modifying the License.
949
+
950
+ You may add Your own copyright statement to Your modifications and
951
+ may provide additional or different license terms and conditions
952
+ for use, reproduction, or distribution of Your modifications, or
953
+ for any such Derivative Works as a whole, provided Your use,
954
+ reproduction, and distribution of the Work otherwise complies with
955
+ the conditions stated in this License.
956
+
957
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
958
+ any Contribution intentionally submitted for inclusion in the Work
959
+ by You to the Licensor shall be under the terms and conditions of
960
+ this License, without any additional terms or conditions.
961
+ Notwithstanding the above, nothing herein shall supersede or modify
962
+ the terms of any separate license agreement you may have executed
963
+ with Licensor regarding such Contributions.
964
+
965
+ 6. Trademarks. This License does not grant permission to use the trade
966
+ names, trademarks, service marks, or product names of the Licensor,
967
+ except as required for reasonable and customary use in describing the
968
+ origin of the Work and reproducing the content of the NOTICE file.
969
+
970
+ 7. Disclaimer of Warranty. Unless required by applicable law or
971
+ agreed to in writing, Licensor provides the Work (and each
972
+ Contributor provides its Contributions) on an "AS IS" BASIS,
973
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
974
+ implied, including, without limitation, any warranties or conditions
975
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
976
+ PARTICULAR PURPOSE. You are solely responsible for determining the
977
+ appropriateness of using or redistributing the Work and assume any
978
+ risks associated with Your exercise of permissions under this License.
979
+
980
+ 8. Limitation of Liability. In no event and under no legal theory,
981
+ whether in tort (including negligence), contract, or otherwise,
982
+ unless required by applicable law (such as deliberate and grossly
983
+ negligent acts) or agreed to in writing, shall any Contributor be
984
+ liable to You for damages, including any direct, indirect, special,
985
+ incidental, or consequential damages of any character arising as a
986
+ result of this License or out of the use or inability to use the
987
+ Work (including but not limited to damages for loss of goodwill,
988
+ work stoppage, computer failure or malfunction, or any and all
989
+ other commercial damages or losses), even if such Contributor
990
+ has been advised of the possibility of such damages.
991
+
992
+ 9. Accepting Warranty or Additional Liability. While redistributing
993
+ the Work or Derivative Works thereof, You may choose to offer,
994
+ and charge a fee for, acceptance of support, warranty, indemnity,
995
+ or other liability obligations and/or rights consistent with this
996
+ License. However, in accepting such obligations, You may act only
997
+ on Your own behalf and on Your sole responsibility, not on behalf
998
+ of any other Contributor, and only if You agree to indemnify,
999
+ defend, and hold each Contributor harmless for any liability
1000
+ incurred by, or claims asserted against, such Contributor by reason
1001
+ of your accepting any such warranty or additional liability.
1002
+
1003
+ END OF TERMS AND CONDITIONS
1004
+
1005
+ APPENDIX: How to apply the Apache License to your work.
1006
+
1007
+ To apply the Apache License to your work, attach the following
1008
+ boilerplate notice, with the fields enclosed by brackets "{}"
1009
+ replaced with your own identifying information. (Don't include
1010
+ the brackets!) The text should be enclosed in the appropriate
1011
+ comment syntax for the file format. We also recommend that a
1012
+ file or class name and description of purpose be included on the
1013
+ same "printed page" as the copyright notice for easier
1014
+ identification within third-party archives.
1015
+
1016
+ Copyright 2018-2025 Amazon.com, Inc. or its affiliates. All Rights Reserved.
1017
+
1018
+ Licensed under the Apache License, Version 2.0 (the "License");
1019
+ you may not use this file except in compliance with the License.
1020
+ You may obtain a copy of the License at
1021
+
1022
+ http://www.apache.org/licenses/LICENSE-2.0
1023
+
1024
+ Unless required by applicable law or agreed to in writing, software
1025
+ distributed under the License is distributed on an "AS IS" BASIS,
1026
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1027
+ See the License for the specific language governing permissions and
1028
+ limitations under the License.
1029
+
1030
+
825
1031
  ----------------
826
1032
 
827
1033
  ** @aws-sdk/client-cloudcontrol@3.953.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudcontrol/v/3.953.0 | Apache-2.0
package/build-info.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
- "comment": "Generated at 2026-01-06T16:04:32Z by generate.sh",
3
- "commit": "0aa3e98"
2
+ "comment": "Generated at 2026-01-22T12:26:20Z by generate.sh",
3
+ "commit": "8ea0dcb"
4
4
  }
@@ -0,0 +1,194 @@
1
+ # Deploy Command Technical Architecture
2
+
3
+ This document provides technical implementation details for contributors debugging or modifying the `cdk deploy` command. It shows the exact function calls and file locations in the execution path.
4
+
5
+ For a high-level conceptual overview of the deploy process, see the [README](../README.md#deploy-flowchart).
6
+
7
+ ## Technical Flowchart
8
+
9
+ ```mermaid
10
+ graph TD
11
+ %% CLI Entry Point
12
+ n1["cdk deploy<br/>(User Command)"]
13
+ n2["cli.ts: exec()"]
14
+ n3["cli.ts: main()"]
15
+
16
+ %% Deploy Method
17
+ n4["cdk-toolkit.ts: CdkToolkit.deploy()"]
18
+ n5["cdk-toolkit.ts: selectStacksForDeploy()"]
19
+ n6["Check if synthesis needed"]
20
+
21
+ %% Synthesis Process
22
+ n7["cloud-executable.ts: doSynthesize()"]
23
+ n29{"Context missing?"}
24
+ n34["cloud-executable.ts: synthesizer()"]
25
+ n9["cli.ts: execProgram()"]
26
+ n10["childProcess.spawn()<br/>(Run CDK App)"]
27
+ n11["CDK App Process Started"]
28
+ n35["CDK App: app.synth()"]
29
+ n36["@aws-cdk/core: synthesize()<br/>Generate CloudFormation JSON"]
30
+ n12["Write templates to cdk.out/"]
31
+ n13["Return CloudAssembly object"]
32
+
33
+ %% Stack Selection
34
+ n14["cloud-assembly.ts:<br/>assembly.selectStacks()"]
35
+ n15["cloud-assembly.ts:<br/>validateStacks()"]
36
+ n16["Return StackCollection"]
37
+
38
+ %% Asset Processing
39
+ n17["cdk-toolkit.ts:<br/>ResourceMigrator.tryMigrateResources()"]
40
+ n18["work-graph.ts:<br/>WorkGraphBuilder.build()"]
41
+ n37["work-graph.ts:<br/>analyzeDeploymentOrder()"]
42
+ n19["work-graph.ts:<br/>workGraph.doParallel()"]
43
+
44
+ %% Parallel Execution Nodes
45
+ n20["asset-build.ts: buildAsset()<br/>(Sequential: concurrency=1)"]
46
+ n21["asset-publishing.ts: publishAsset()<br/>(Parallel: concurrency=8)"]
47
+ n44["deploy-stack.ts: deployStack()<br/>(Parallel: configurable)"]
48
+ n45["await Promise.all()<br/>Wait for dependencies"]
49
+
50
+ %% Deployment Process
51
+ n22["cdk-toolkit.ts: deployStack()"]
52
+ n23["deploy-stack.ts:<br/>CloudFormationStack.lookup()"]
53
+ n24["deploy-stack.ts:<br/>makeBodyParameter()"]
54
+ n25["deploy-stack.ts:<br/>publishAssets()"]
55
+ n38["deploy-stack.ts:<br/>requireApproval()"]
56
+
57
+ %% Hotswap Decision
58
+ n30{"--hotswap flag set?"}
59
+ n31["hotswap-deployments.ts:<br/>tryHotswapDeployment()"]
60
+
61
+ %% Standard CloudFormation Deployment
62
+ n26["deploy-stack.ts:<br/>FullCloudFormationDeployment.performDeployment()"]
63
+ n27["AWS SDK: CloudFormation<br/>createChangeSet() OR<br/>updateStack()"]
64
+ n28["CloudFormation Service"]
65
+ n32["deploy-stack.ts:<br/>StackActivityMonitor.start()"]
66
+ n33["deploy-stack.ts:<br/>waitForStackDeploy()"]
67
+
68
+ %% Completion
69
+ n39["deploy-stack.ts:<br/>getStackOutputs()"]
70
+ n40["cdk-toolkit.ts:<br/>printStackOutputs()"]
71
+
72
+ %% Main Flow Connections
73
+ n1 --> n2
74
+ n2 --> n3
75
+ n3 --> n4
76
+ n4 --> n5
77
+ n5 --> n6
78
+ n6 --> n7
79
+ n7 --> n29
80
+ n29 -->|"Yes"| n34
81
+ n34 --> n9
82
+ n9 --> n10
83
+ n10 --> n11
84
+ n11 --> n35
85
+ n35 --> n36
86
+ n36 --> n12
87
+ n12 --> n13
88
+ n13 -->|"Loop if context missing"| n29
89
+ n29 -->|"No"| n14
90
+ n14 --> n15
91
+ n15 --> n16
92
+ n16 --> n17
93
+ n17 --> n18
94
+ n18 --> n37
95
+ n37 --> n19
96
+
97
+ %% Parallel execution from workGraph.doParallel()
98
+ n19 -.->|"Parallel"| n20
99
+ n19 -.->|"Parallel"| n21
100
+ n19 -.->|"Parallel"| n44
101
+
102
+ %% Dependency relationships
103
+ n20 --> n45
104
+ n21 --> n45
105
+ n44 --> n45
106
+ n45 --> n22
107
+ n22 --> n23
108
+ n23 --> n24
109
+ n24 --> n25
110
+ n25 --> n38
111
+ n38 --> n30
112
+ n30 -->|"Yes"| n31
113
+ n30 -->|"No"| n26
114
+ n31 --> n39
115
+ n26 --> n27
116
+ n27 --> n28
117
+ n28 --> n32
118
+ n32 --> n33
119
+ n33 --> n39
120
+ n39 --> n40
121
+
122
+ %% Simplified Color Scheme - Only 3 colors
123
+ %% External Systems (Light Red)
124
+ style n1 fill:#ffebee,stroke:#c62828,stroke-width:2px
125
+ style n28 fill:#ffebee,stroke:#c62828,stroke-width:2px
126
+
127
+ %% CDK App Process (Light Green)
128
+ style n10 fill:#e8f5e9,stroke:#2e7d32,stroke-width:2px
129
+ style n11 fill:#e8f5e9,stroke:#2e7d32,stroke-width:2px
130
+ style n35 fill:#e8f5e9,stroke:#2e7d32,stroke-width:2px
131
+ style n36 fill:#e8f5e9,stroke:#2e7d32,stroke-width:2px
132
+ style n12 fill:#e8f5e9,stroke:#2e7d32,stroke-width:2px
133
+
134
+ %% Decision Points (Light Yellow)
135
+ style n29 fill:#fff9c4,stroke:#f57f17,stroke-width:2px
136
+ style n30 fill:#fff9c4,stroke:#f57f17,stroke-width:2px
137
+ style n38 fill:#fff9c4,stroke:#f57f17,stroke-width:2px
138
+ style n45 fill:#fff9c4,stroke:#f57f17,stroke-width:2px
139
+
140
+ %% Everything else - CDK CLI Code (Light Blue)
141
+ style n2 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
142
+ style n3 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
143
+ style n4 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
144
+ style n5 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
145
+ style n6 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
146
+ style n7 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
147
+ style n9 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
148
+ style n13 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
149
+ style n14 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
150
+ style n15 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
151
+ style n16 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
152
+ style n17 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
153
+ style n18 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
154
+ style n19 fill:#e1f5fe,stroke:#0277bd,stroke-width:3px
155
+ style n20 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
156
+ style n21 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
157
+ style n22 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
158
+ style n23 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
159
+ style n24 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
160
+ style n25 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
161
+ style n26 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
162
+ style n27 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
163
+ style n31 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
164
+ style n32 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
165
+ style n33 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
166
+ style n34 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
167
+ style n37 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
168
+ style n39 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
169
+ style n40 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
170
+ style n44 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
171
+
172
+ ```
173
+
174
+ ## Legend (Node Categories)
175
+
176
+ ```mermaid
177
+ graph LR
178
+ L1["External Systems"]~~~L2["CDK App Process"]~~~L3["CDK CLI Code"]~~~L4["Decision Points"]
179
+
180
+ style L1 fill:#ffebee,stroke:#c62828,stroke-width:2px
181
+ style L2 fill:#e8f5e9,stroke:#2e7d32,stroke-width:2px
182
+ style L3 fill:#e1f5fe,stroke:#0277bd,stroke-width:2px
183
+ style L4 fill:#fff9c4,stroke:#f57f17,stroke-width:2px
184
+ ```
185
+
186
+ ## Parallel Execution Model
187
+
188
+ The deploy process uses a sophisticated work graph (`workGraph.doParallel()` in `work-graph.ts`) to manage parallel execution:
189
+
190
+ - **Asset Building** (concurrency: 1): Compiles Docker images, Lambda code, etc. sequentially to avoid overwhelming system resources
191
+ - **Asset Publishing** (concurrency: 8): Uploads assets to S3/ECR in parallel for faster deployment
192
+ - **Stack Deployment** (configurable): Deploys multiple stacks in parallel while respecting dependencies
193
+
194
+ The dotted lines indicate parallel execution paths from the work graph orchestrator. All operations respect dependency relationships before proceeding (node n45 represents the synchronization point).