Skip to content

Commit

Permalink
chore: changing dependsOn attr description
Browse files Browse the repository at this point in the history
Changing dependsOn description by Eric comment
  • Loading branch information
allcloud-sahar-hagbi committed Sep 25, 2024
1 parent 922934a commit 80abf04
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1554,8 +1554,9 @@ export interface ICloudFormationStackSet {
*/
readonly parameters?: t.ICfnParameter[];
/**
* The order to deploy the stack relative to the other stacks. Can contain multiple stack names.
* For any stackset name you define here, the stackset defined will be deployed before the current one.
* The other StackSets this StackSet depends on.
* For stackset names you define here, a CloudFormation DependsOn attribute will be added between the resources.
* Please note this does not guarantee the deployment order of the stack instances within the StackSet.
*/
readonly dependsOn?: string[];
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@
"type": "array"
},
"dependsOn": {
"description": "The order to deploy the stack relative to the other stacks. Can contain multiple stack names. For any stackset name you define here, the stackset defined will be deployed before the current one.",
"description": "The other StackSets this StackSet depends on. For stackset names you define here, a CloudFormation DependsOn attribute will be added between the resources. Please note this does not guarantee the deployment order of the stack instances within the StackSet.",
"items": {
"type": "string"
},
Expand Down

0 comments on commit 80abf04

Please sign in to comment.