Skip to content

Commit

Permalink
Fix additional feedback on deployment project CDK docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ashovlin committed Aug 5, 2022
1 parent fb3eade commit b76defd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions site/content/docs/deployment-projects/cdk-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ The following links are useful resources to learn how to write .NET CDK projects
The main concepts to understand about the CDK are the following.

* Stack - this is the top level container for all of the AWS resources represented as constructs. In deployment projects this type is usually the `AppStack` type in the project.
* Constructs - AWS resources are modeled as constructs. Some constructs are a one-to-one mapping to a single AWS resource. The CDK also has higher level abstractions where a single construct represents a collection of AWS resources that solve a specific problem.
* Construct properties - For every construct this is a properties object that is created first, all necessary values are set and then passed into the constructor of a construct.
* Constructs - AWS resources are modeled as constructs. Some constructs are a one-to-one mapping to a single AWS resource. The CDK also has higher level abstractions where a single construct represents a collection of AWS resources that solve a common problem.
* Construct properties - For every construct there is a properties object that is created first, all necessary values are set and then passed into the constructor of a construct.


### Main method in Program.cs
Expand Down

0 comments on commit b76defd

Please sign in to comment.