@cdklabs/cdk-ssm-documents 0.0.58 → 0.0.60

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.
Files changed (427) hide show
  1. package/.jsii +12 -12
  2. package/lib/construct/synth-utils.js +1 -1
  3. package/lib/document/automation-document.js +1 -1
  4. package/lib/document/command-document.js +1 -1
  5. package/lib/document/document-builder.js +2 -2
  6. package/lib/document/ssm-document.js +1 -1
  7. package/lib/domain/aws-service.js +1 -1
  8. package/lib/domain/choice.js +1 -1
  9. package/lib/domain/data-type.js +1 -1
  10. package/lib/domain/enum/install-action.js +2 -2
  11. package/lib/domain/enum/install-uninstall-repair.js +2 -2
  12. package/lib/domain/enum/installation-type.js +2 -2
  13. package/lib/domain/enum/package-name.js +2 -2
  14. package/lib/domain/input.js +1 -1
  15. package/lib/domain/operation.js +1 -1
  16. package/lib/domain/platform.js +1 -1
  17. package/lib/domain/precondition.js +1 -1
  18. package/lib/incident-response/incident-response.js +3 -3
  19. package/lib/interface/approve-hook.js +2 -2
  20. package/lib/interface/auth-method.js +3 -3
  21. package/lib/interface/aws-invoker.js +2 -2
  22. package/lib/interface/downloadable-content.js +8 -8
  23. package/lib/interface/environment.js +3 -3
  24. package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
  25. package/lib/interface/observer.js +1 -1
  26. package/lib/interface/on-failure.js +6 -6
  27. package/lib/interface/pause-hook.js +2 -2
  28. package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
  29. package/lib/interface/run-document-location.js +2 -2
  30. package/lib/interface/sleep-hook.js +2 -2
  31. package/lib/interface/step-ref.js +1 -1
  32. package/lib/interface/variables/boolean-variable.js +2 -2
  33. package/lib/interface/variables/map-list-variable.js +2 -2
  34. package/lib/interface/variables/number-variable.js +2 -2
  35. package/lib/interface/variables/secure-string-variable.js +4 -4
  36. package/lib/interface/variables/string-list-variable.js +2 -2
  37. package/lib/interface/variables/string-map-variable.js +2 -2
  38. package/lib/interface/variables/string-variable.js +4 -4
  39. package/lib/interface/variables/variable.js +2 -2
  40. package/lib/interface/webhook.js +1 -1
  41. package/lib/parent-steps/automation/approve-step.js +1 -1
  42. package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
  43. package/lib/parent-steps/automation/aws-api-step.js +1 -1
  44. package/lib/parent-steps/automation/branch-step.js +1 -1
  45. package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
  46. package/lib/parent-steps/automation/copy-image-step.js +1 -1
  47. package/lib/parent-steps/automation/create-image-step.js +1 -1
  48. package/lib/parent-steps/automation/create-stack-step.js +3 -3
  49. package/lib/parent-steps/automation/create-tags-step.js +3 -3
  50. package/lib/parent-steps/automation/delete-image-step.js +1 -1
  51. package/lib/parent-steps/automation/delete-stack-step.js +1 -1
  52. package/lib/parent-steps/automation/execute-automation-step.js +1 -1
  53. package/lib/parent-steps/automation/execute-script-step.js +5 -5
  54. package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
  55. package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
  56. package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
  57. package/lib/parent-steps/automation/pause-step.js +1 -1
  58. package/lib/parent-steps/automation/run-command-step.js +3 -3
  59. package/lib/parent-steps/automation/run-instance-step.js +1 -1
  60. package/lib/parent-steps/automation/sleep-step.js +1 -1
  61. package/lib/parent-steps/automation/update-variable.js +1 -1
  62. package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
  63. package/lib/parent-steps/automation-step.js +1 -1
  64. package/lib/parent-steps/command/applications-step.js +1 -1
  65. package/lib/parent-steps/command/configure-docker-step.js +1 -1
  66. package/lib/parent-steps/command/configure-package-step.js +1 -1
  67. package/lib/parent-steps/command/domain-join-step.js +1 -1
  68. package/lib/parent-steps/command/download-content-step.js +1 -1
  69. package/lib/parent-steps/command/ps-module-step.js +1 -1
  70. package/lib/parent-steps/command/run-docker-action-step.js +1 -1
  71. package/lib/parent-steps/command/run-document-step.js +1 -1
  72. package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
  73. package/lib/parent-steps/command/run-shell-script-step.js +1 -1
  74. package/lib/parent-steps/command/software-inventory-step.js +1 -1
  75. package/lib/parent-steps/command/update-agent-step.js +1 -1
  76. package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
  77. package/lib/parent-steps/command-step.js +1 -1
  78. package/lib/parent-steps/step.js +1 -1
  79. package/lib/patterns/automation/composite-step.js +2 -2
  80. package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
  81. package/lib/patterns/automation/string-step.js +1 -1
  82. package/lib/patterns/document/string-document.js +1 -1
  83. package/lib/patterns/document/timed-document.js +1 -1
  84. package/lib/samples/hello-world.js +1 -1
  85. package/lib/simulation/automation/approve-simulation.js +1 -1
  86. package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
  87. package/lib/simulation/automation/automation-simulation-base.js +1 -1
  88. package/lib/simulation/automation/aws-api-simulation.js +1 -1
  89. package/lib/simulation/automation/branch-simulation.js +1 -1
  90. package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
  91. package/lib/simulation/automation/copy-image-simulation.js +1 -1
  92. package/lib/simulation/automation/create-image-simulation.js +1 -1
  93. package/lib/simulation/automation/create-stack-simulation.js +1 -1
  94. package/lib/simulation/automation/create-tags-simulation.js +1 -1
  95. package/lib/simulation/automation/delete-image-simulation.js +1 -1
  96. package/lib/simulation/automation/delete-stack-simulation.js +1 -1
  97. package/lib/simulation/automation/execute-script-simulation.js +1 -1
  98. package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
  99. package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
  100. package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
  101. package/lib/simulation/automation/pause-simulation.js +1 -1
  102. package/lib/simulation/automation/run-command-simulation.js +1 -1
  103. package/lib/simulation/automation/run-instance-simulation.js +1 -1
  104. package/lib/simulation/automation/sleep-simulation.js +1 -1
  105. package/lib/simulation/automation/update-variable-simulation.js +1 -1
  106. package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
  107. package/lib/simulation/automation-step-simulation.js +1 -1
  108. package/lib/simulation/command/command-simulation-base.js +1 -1
  109. package/lib/simulation/command/ps-module-simulation.js +1 -1
  110. package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
  111. package/lib/simulation/command/run-shell-script-simulation.js +1 -1
  112. package/lib/simulation/command-step-simulation.js +1 -1
  113. package/lib/simulation/document/automation-simulation.js +1 -1
  114. package/lib/simulation/document/command-simulation.js +1 -1
  115. package/lib/simulation/simulation.js +1 -1
  116. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +9 -9
  117. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForChangeSetCreateComplete.js +2 -2
  118. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackCreateComplete.js +2 -2
  119. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackDeleteComplete.js +2 -2
  120. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackExists.js +2 -2
  121. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackImportComplete.js +2 -2
  122. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRefactorCreateComplete.js +1 -1
  123. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRefactorExecuteComplete.js +1 -1
  124. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRollbackComplete.js +2 -2
  125. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackUpdateComplete.js +2 -2
  126. package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormation.d.ts +11 -10
  127. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/CloudFormation.d.ts +13 -10
  128. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForChangeSetCreateComplete.d.ts +9 -3
  129. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackCreateComplete.d.ts +9 -3
  130. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackDeleteComplete.d.ts +11 -3
  131. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackExists.d.ts +9 -3
  132. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackImportComplete.d.ts +9 -3
  133. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackRefactorCreateComplete.d.ts +11 -3
  134. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackRefactorExecuteComplete.d.ts +11 -3
  135. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackRollbackComplete.d.ts +9 -3
  136. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackUpdateComplete.d.ts +9 -3
  137. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForTypeRegistrationComplete.d.ts +11 -3
  138. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForChangeSetCreateComplete.d.ts +4 -3
  139. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackCreateComplete.d.ts +4 -3
  140. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackDeleteComplete.d.ts +4 -3
  141. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackExists.d.ts +4 -3
  142. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackImportComplete.d.ts +4 -3
  143. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackRefactorCreateComplete.d.ts +4 -3
  144. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackRefactorExecuteComplete.d.ts +4 -3
  145. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackRollbackComplete.d.ts +4 -3
  146. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackUpdateComplete.d.ts +4 -3
  147. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForTypeRegistrationComplete.d.ts +4 -3
  148. package/node_modules/@aws-sdk/client-cloudformation/package.json +8 -8
  149. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/index.js +1 -1
  150. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/schemas/schemas_0.js +2 -2
  151. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/schemas/schemas_0.js +2 -2
  152. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/waitForAlarmExists.js +1 -1
  153. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/waitForAlarmMuteRuleExists.js +2 -2
  154. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/waitForCompositeAlarmExists.js +1 -1
  155. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatch.d.ts +3 -3
  156. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteDashboardsCommand.d.ts +2 -4
  157. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetOTelEnrichmentCommand.d.ts +1 -1
  158. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -2
  159. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutDashboardCommand.d.ts +6 -0
  160. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StartOTelEnrichmentCommand.d.ts +1 -1
  161. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StopOTelEnrichmentCommand.d.ts +1 -1
  162. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/TagResourceCommand.d.ts +2 -2
  163. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  164. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/models_0.d.ts +37 -0
  165. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatch.d.ts +3 -3
  166. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/models_0.d.ts +1 -0
  167. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/waiters/waitForAlarmExists.d.ts +9 -3
  168. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/waiters/waitForAlarmMuteRuleExists.d.ts +9 -3
  169. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/waiters/waitForCompositeAlarmExists.d.ts +9 -3
  170. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/waitForAlarmExists.d.ts +4 -3
  171. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/waitForAlarmMuteRuleExists.d.ts +4 -3
  172. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/waitForCompositeAlarmExists.d.ts +4 -3
  173. package/node_modules/@aws-sdk/client-cloudwatch/package.json +8 -8
  174. package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +17 -17
  175. package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +12 -8
  176. package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +12 -8
  177. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForImageAvailable.js +1 -1
  178. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForImageExists.js +2 -2
  179. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceExists.js +2 -2
  180. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceRunning.js +2 -2
  181. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceStatusOk.js +1 -1
  182. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceStopped.js +1 -1
  183. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceTerminated.js +1 -1
  184. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInternetGatewayExists.js +1 -1
  185. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForKeyPairExists.js +2 -2
  186. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForNatGatewayAvailable.js +1 -1
  187. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForNatGatewayDeleted.js +1 -1
  188. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForNetworkInterfaceAvailable.js +1 -1
  189. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForPasswordDataAvailable.js +1 -1
  190. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecondaryNetworkCreateComplete.js +1 -1
  191. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecondarySubnetCreateComplete.js +1 -1
  192. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecurityGroupExists.js +1 -1
  193. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSnapshotCompleted.js +1 -1
  194. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSpotInstanceRequestFulfilled.js +1 -1
  195. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSubnetAvailable.js +1 -1
  196. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVolumeAvailable.js +1 -1
  197. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVolumeDeleted.js +2 -2
  198. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVolumeInUse.js +1 -1
  199. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcAvailable.js +1 -1
  200. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcExists.js +2 -2
  201. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcPeeringConnectionDeleted.js +1 -1
  202. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcPeeringConnectionExists.js +1 -1
  203. package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +44 -44
  204. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTypesCommand.d.ts +5 -1
  205. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedResourceVisibilityCommand.d.ts +2 -2
  206. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpnConnectionOptionsCommand.d.ts +1 -0
  207. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +11 -0
  208. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +1 -1
  209. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +6 -1
  210. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2.d.ts +50 -44
  211. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedResourceVisibilityCommand.d.ts +1 -1
  212. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +2 -0
  213. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +1 -1
  214. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +2 -0
  215. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForBundleTaskComplete.d.ts +9 -3
  216. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForConversionTaskCancelled.d.ts +9 -3
  217. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForConversionTaskCompleted.d.ts +9 -3
  218. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForConversionTaskDeleted.d.ts +9 -3
  219. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForCustomerGatewayAvailable.d.ts +9 -3
  220. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForExportTaskCancelled.d.ts +9 -3
  221. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForExportTaskCompleted.d.ts +9 -3
  222. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForImageAvailable.d.ts +7 -3
  223. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForImageExists.d.ts +7 -3
  224. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForImageUsageReportAvailable.d.ts +9 -3
  225. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceExists.d.ts +9 -3
  226. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceRunning.d.ts +9 -3
  227. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceStatusOk.d.ts +9 -3
  228. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceStopped.d.ts +9 -3
  229. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceTerminated.d.ts +9 -3
  230. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInternetGatewayExists.d.ts +9 -3
  231. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForKeyPairExists.d.ts +7 -3
  232. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForNatGatewayAvailable.d.ts +9 -3
  233. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForNatGatewayDeleted.d.ts +11 -3
  234. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForNetworkInterfaceAvailable.d.ts +9 -3
  235. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForPasswordDataAvailable.d.ts +7 -3
  236. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecondaryNetworkCreateComplete.d.ts +9 -3
  237. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecondaryNetworkDeleteComplete.d.ts +9 -3
  238. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecondarySubnetCreateComplete.d.ts +9 -3
  239. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecondarySubnetDeleteComplete.d.ts +9 -3
  240. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecurityGroupExists.d.ts +9 -3
  241. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecurityGroupVpcAssociationAssociated.d.ts +11 -3
  242. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecurityGroupVpcAssociationDisassociated.d.ts +11 -3
  243. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSnapshotCompleted.d.ts +9 -3
  244. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSnapshotImported.d.ts +9 -3
  245. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSpotInstanceRequestFulfilled.d.ts +9 -3
  246. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForStoreImageTaskComplete.d.ts +9 -3
  247. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSubnetAvailable.d.ts +7 -3
  248. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSystemStatusOk.d.ts +9 -3
  249. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVolumeAvailable.d.ts +7 -3
  250. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVolumeDeleted.d.ts +7 -3
  251. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVolumeInUse.d.ts +7 -3
  252. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpcAvailable.d.ts +7 -3
  253. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpcExists.d.ts +7 -3
  254. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpcPeeringConnectionDeleted.d.ts +11 -3
  255. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpcPeeringConnectionExists.d.ts +9 -3
  256. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpnConnectionAvailable.d.ts +9 -3
  257. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpnConnectionDeleted.d.ts +9 -3
  258. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForBundleTaskComplete.d.ts +4 -3
  259. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForConversionTaskCancelled.d.ts +4 -3
  260. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForConversionTaskCompleted.d.ts +4 -3
  261. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForConversionTaskDeleted.d.ts +4 -3
  262. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForCustomerGatewayAvailable.d.ts +4 -3
  263. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForExportTaskCancelled.d.ts +4 -3
  264. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForExportTaskCompleted.d.ts +4 -3
  265. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForImageAvailable.d.ts +4 -3
  266. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForImageExists.d.ts +4 -3
  267. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForImageUsageReportAvailable.d.ts +4 -3
  268. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceExists.d.ts +4 -3
  269. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceRunning.d.ts +4 -3
  270. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceStatusOk.d.ts +4 -3
  271. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceStopped.d.ts +4 -3
  272. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceTerminated.d.ts +4 -3
  273. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInternetGatewayExists.d.ts +4 -3
  274. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForKeyPairExists.d.ts +4 -3
  275. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForNatGatewayAvailable.d.ts +4 -3
  276. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForNatGatewayDeleted.d.ts +4 -3
  277. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForNetworkInterfaceAvailable.d.ts +4 -3
  278. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForPasswordDataAvailable.d.ts +4 -3
  279. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondaryNetworkCreateComplete.d.ts +4 -3
  280. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondaryNetworkDeleteComplete.d.ts +4 -3
  281. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondarySubnetCreateComplete.d.ts +4 -3
  282. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondarySubnetDeleteComplete.d.ts +4 -3
  283. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecurityGroupExists.d.ts +4 -3
  284. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecurityGroupVpcAssociationAssociated.d.ts +4 -3
  285. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecurityGroupVpcAssociationDisassociated.d.ts +4 -3
  286. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSnapshotCompleted.d.ts +4 -3
  287. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSnapshotImported.d.ts +4 -3
  288. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSpotInstanceRequestFulfilled.d.ts +4 -3
  289. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForStoreImageTaskComplete.d.ts +4 -3
  290. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSubnetAvailable.d.ts +4 -3
  291. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSystemStatusOk.d.ts +4 -3
  292. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVolumeAvailable.d.ts +4 -3
  293. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVolumeDeleted.d.ts +4 -3
  294. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVolumeInUse.d.ts +4 -3
  295. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcAvailable.d.ts +4 -3
  296. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcExists.d.ts +4 -3
  297. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcPeeringConnectionDeleted.d.ts +4 -3
  298. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcPeeringConnectionExists.d.ts +4 -3
  299. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpnConnectionAvailable.d.ts +4 -3
  300. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpnConnectionDeleted.d.ts +4 -3
  301. package/node_modules/@aws-sdk/client-ec2/package.json +8 -8
  302. package/node_modules/@aws-sdk/client-iam/README.md +51 -0
  303. package/node_modules/@aws-sdk/client-iam/dist-cjs/index.js +4 -4
  304. package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForInstanceProfileExists.js +2 -2
  305. package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForPolicyExists.js +2 -2
  306. package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForRoleExists.js +1 -1
  307. package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForUserExists.js +1 -1
  308. package/node_modules/@aws-sdk/client-iam/dist-types/IAM.d.ts +55 -4
  309. package/node_modules/@aws-sdk/client-iam/dist-types/IAMClient.d.ts +51 -0
  310. package/node_modules/@aws-sdk/client-iam/dist-types/index.d.ts +51 -0
  311. package/node_modules/@aws-sdk/client-iam/dist-types/models/models_0.d.ts +5 -0
  312. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/IAM.d.ts +4 -4
  313. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/waiters/waitForInstanceProfileExists.d.ts +9 -3
  314. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/waiters/waitForPolicyExists.d.ts +7 -3
  315. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/waiters/waitForRoleExists.d.ts +7 -3
  316. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/waiters/waitForUserExists.d.ts +7 -3
  317. package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForInstanceProfileExists.d.ts +4 -3
  318. package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForPolicyExists.d.ts +4 -3
  319. package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForRoleExists.d.ts +4 -3
  320. package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForUserExists.d.ts +4 -3
  321. package/node_modules/@aws-sdk/client-iam/package.json +8 -8
  322. package/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +1 -1
  323. package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionActiveV2.js +1 -1
  324. package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionExists.js +2 -2
  325. package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionUpdatedV2.js +1 -1
  326. package/node_modules/@aws-sdk/client-lambda/dist-types/Lambda.d.ts +6 -6
  327. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/Lambda.d.ts +6 -6
  328. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionActive.d.ts +9 -3
  329. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionActiveV2.d.ts +7 -3
  330. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionExists.d.ts +7 -3
  331. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionUpdated.d.ts +9 -3
  332. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionUpdatedV2.d.ts +7 -3
  333. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForPublishedVersionActive.d.ts +9 -3
  334. package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionActive.d.ts +4 -3
  335. package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionActiveV2.d.ts +4 -3
  336. package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionExists.d.ts +4 -3
  337. package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionUpdated.d.ts +4 -3
  338. package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionUpdatedV2.d.ts +4 -3
  339. package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForPublishedVersionActive.d.ts +4 -3
  340. package/node_modules/@aws-sdk/client-lambda/package.json +8 -8
  341. package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/bdd.js +622 -618
  342. package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +4 -4
  343. package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/bdd.js +622 -618
  344. package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketExists.js +2 -2
  345. package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketNotExists.js +2 -2
  346. package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectExists.js +2 -2
  347. package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectNotExists.js +2 -2
  348. package/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +5 -4
  349. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +5 -4
  350. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketExists.d.ts +7 -3
  351. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketNotExists.d.ts +8 -3
  352. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectExists.d.ts +7 -3
  353. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectNotExists.d.ts +8 -3
  354. package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketExists.d.ts +4 -3
  355. package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketNotExists.d.ts +5 -3
  356. package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectExists.d.ts +4 -3
  357. package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectNotExists.d.ts +5 -3
  358. package/node_modules/@aws-sdk/client-s3/package.json +12 -12
  359. package/node_modules/@aws-sdk/client-sns/package.json +7 -7
  360. package/node_modules/@aws-sdk/client-sqs/package.json +7 -7
  361. package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +1 -1
  362. package/node_modules/@aws-sdk/client-ssm/dist-es/waiters/waitForCommandExecuted.js +1 -1
  363. package/node_modules/@aws-sdk/client-ssm/dist-types/SSM.d.ts +1 -1
  364. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSM.d.ts +1 -1
  365. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/waiters/waitForCommandExecuted.d.ts +9 -3
  366. package/node_modules/@aws-sdk/client-ssm/dist-types/waiters/waitForCommandExecuted.d.ts +4 -3
  367. package/node_modules/@aws-sdk/client-ssm/package.json +8 -8
  368. package/node_modules/@aws-sdk/core/dist-cjs/index.js +15 -6
  369. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +15 -6
  370. package/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js +15 -6
  371. package/node_modules/@aws-sdk/core/dist-types/submodules/client/emitWarningIfUnsupportedVersion.d.ts +1 -2
  372. package/node_modules/@aws-sdk/core/package.json +3 -3
  373. package/node_modules/@aws-sdk/credential-provider-env/package.json +2 -2
  374. package/node_modules/@aws-sdk/credential-provider-http/package.json +2 -2
  375. package/node_modules/@aws-sdk/credential-provider-ini/package.json +9 -9
  376. package/node_modules/@aws-sdk/credential-provider-login/package.json +3 -3
  377. package/node_modules/@aws-sdk/credential-provider-node/package.json +7 -7
  378. package/node_modules/@aws-sdk/credential-provider-process/package.json +2 -2
  379. package/node_modules/@aws-sdk/credential-provider-sso/package.json +4 -4
  380. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +3 -3
  381. package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +2 -2
  382. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +2 -2
  383. package/node_modules/@aws-sdk/middleware-user-agent/package.json +3 -3
  384. package/node_modules/@aws-sdk/nested-clients/package.json +7 -7
  385. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +2 -2
  386. package/node_modules/@aws-sdk/token-providers/package.json +3 -3
  387. package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
  388. package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-external/nodable_entities.js +336 -0
  389. package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +26 -0
  390. package/node_modules/@aws-sdk/xml-builder/dist-es/xml-external/nodable_entities.js +332 -0
  391. package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +26 -0
  392. package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-external/nodable_entities.d.ts +66 -0
  393. package/node_modules/@aws-sdk/xml-builder/dist-types/xml-external/nodable_entities.d.ts +65 -0
  394. package/node_modules/@aws-sdk/xml-builder/package.json +3 -2
  395. package/node_modules/@smithy/middleware-retry/package.json +2 -2
  396. package/node_modules/@smithy/util-retry/dist-cjs/index.js +7 -3
  397. package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +5 -2
  398. package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +2 -1
  399. package/node_modules/@smithy/util-retry/package.json +2 -2
  400. package/node_modules/fast-xml-builder/CHANGELOG.md +24 -0
  401. package/node_modules/fast-xml-builder/README.md +53 -2
  402. package/node_modules/fast-xml-builder/lib/fxb.cjs +1 -1
  403. package/node_modules/fast-xml-builder/lib/fxb.d.cts +91 -1
  404. package/node_modules/fast-xml-builder/lib/fxb.min.js +1 -1
  405. package/node_modules/fast-xml-builder/lib/fxb.min.js.map +1 -1
  406. package/node_modules/fast-xml-builder/package.json +3 -2
  407. package/node_modules/fast-xml-builder/src/fxb.d.ts +93 -3
  408. package/node_modules/fast-xml-builder/src/fxb.js +106 -40
  409. package/node_modules/fast-xml-builder/src/orderedJs2Xml.js +95 -42
  410. package/node_modules/fast-xml-builder/src/util.js +16 -0
  411. package/node_modules/fast-xml-parser/CHANGELOG.md +8 -0
  412. package/node_modules/fast-xml-parser/lib/fxp.cjs +1 -1
  413. package/node_modules/fast-xml-parser/lib/fxp.min.js +1 -1
  414. package/node_modules/fast-xml-parser/lib/fxp.min.js.map +1 -1
  415. package/node_modules/fast-xml-parser/lib/fxparser.min.js +1 -1
  416. package/node_modules/fast-xml-parser/lib/fxparser.min.js.map +1 -1
  417. package/node_modules/fast-xml-parser/package.json +1 -1
  418. package/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +16 -11
  419. package/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +2 -2
  420. package/node_modules/strnum/CHANGELOG.md +3 -0
  421. package/node_modules/strnum/package.json +3 -2
  422. package/node_modules/strnum/strnum.js +12 -10
  423. package/node_modules/xml-naming/README.md +189 -0
  424. package/node_modules/xml-naming/package.json +54 -0
  425. package/node_modules/xml-naming/src/index.d.ts +74 -0
  426. package/node_modules/xml-naming/src/index.js +270 -0
  427. package/package.json +10 -10
@@ -46,5 +46,5 @@ class AutomationSimulation {
46
46
  }
47
47
  exports.AutomationSimulation = AutomationSimulation;
48
48
  _a = JSII_RTTI_SYMBOL_1;
49
- AutomationSimulation[_a] = { fqn: "@cdklabs/cdk-ssm-documents.AutomationSimulation", version: "0.0.58" };
49
+ AutomationSimulation[_a] = { fqn: "@cdklabs/cdk-ssm-documents.AutomationSimulation", version: "0.0.60" };
50
50
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0b21hdGlvbi1zaW11bGF0aW9uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3NpbXVsYXRpb24vZG9jdW1lbnQvYXV0b21hdGlvbi1zaW11bGF0aW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBR0EsOEVBQXlFO0FBR3pFLE1BQWEsb0JBQW9CO0lBSS9CLFlBQVksa0JBQXNDLEVBQUUsS0FBc0I7UUFDeEUsSUFBSSxDQUFDLGtCQUFrQixHQUFHLGtCQUFrQixDQUFDO1FBQzdDLElBQUksQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFDO0lBQ3JCLENBQUM7SUFFRDs7Ozs7T0FLRztJQUNJLEtBQUssQ0FBQyxNQUErQjtRQUMxQyxNQUFNLFVBQVUsR0FBRyxJQUFJLElBQUksRUFBRSxDQUFDLFdBQVcsRUFBRSxDQUFDLENBQUMsbUNBQW1DO1FBQ2hGLE1BQU0sQ0FBQyxhQUFhLENBQUMsR0FBRyxVQUFVLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQ2pELE1BQU0sQ0FBQyxrQkFBa0IsQ0FBQyxHQUFHLFVBQVUsQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFDO2FBQ2xELE9BQU8sQ0FBQyxHQUFHLEVBQUUsR0FBRyxDQUFDLENBQUMsOEJBQThCO2FBQ2hELE9BQU8sQ0FBQyxJQUFJLEVBQUUsR0FBRyxDQUFDLENBQUM7UUFDdEIsTUFBTSxNQUFNLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsTUFBTSxFQUFFLEdBQUcsTUFBTSxDQUFDLENBQUMsUUFBUSxFQUFFLENBQUMsUUFBUSxDQUFDLENBQUMsRUFBRSxHQUFHLENBQUMsQ0FBQztRQUM5RSxNQUFNLENBQUMseUJBQXlCLENBQUMsR0FBRyxNQUFNLEdBQUcsbUNBQW1DLENBQUM7UUFFakYsSUFBSSxDQUFDLGtCQUFrQixDQUFDLFlBQVksRUFBRSxPQUFPLENBQUMsQ0FBQyxDQUFDLEVBQUU7WUFDaEQsTUFBTSxDQUFDLFlBQVksQ0FBQyxDQUFDLElBQUksRUFBRSxDQUFDLEdBQUcsQ0FBQyxDQUFDLFlBQVksQ0FBQztRQUNoRCxDQUFDLENBQUMsQ0FBQztRQUVILE9BQU8sSUFBSSxxREFBd0IsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxjQUFjLEVBQUUsQ0FBQyxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDN0gsQ0FBQztJQUVEOzs7O09BSUc7SUFDSyxXQUFXLENBQUMsS0FBdUI7UUFDekMsTUFBTSxTQUFTLEdBQUcsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQzNCLElBQUksWUFBWSxHQUFtQixTQUFTLENBQUM7UUFDN0MsS0FBSyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLEVBQUU7WUFDekIsWUFBWSxDQUFDLFFBQVEsR0FBRyxZQUFZLENBQUMsZ0JBQWdCLEVBQUUsT0FBTyxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQztZQUMzRSxZQUFZLENBQUMsbUJBQW1CLEdBQUcsS0FBSyxDQUFDO1lBQ3pDLFlBQVksR0FBRyxDQUFDLENBQUM7UUFDbkIsQ0FBQyxDQUFDLENBQUM7UUFDSCxPQUFPLFNBQVMsQ0FBQztJQUNuQixDQUFDOztBQTdDSCxvREE4Q0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBdXRvbWF0aW9uRG9jdW1lbnQgfSBmcm9tICcuLi8uLi9kb2N1bWVudC9hdXRvbWF0aW9uLWRvY3VtZW50JztcbmltcG9ydCB7IFNpbXVsYXRpb25SZXN1bHQgfSBmcm9tICcuLi8uLi9kb21haW4vc2ltdWxhdGlvbi1yZXN1bHQnO1xuaW1wb3J0IHsgQXV0b21hdGlvblN0ZXAgfSBmcm9tICcuLi8uLi9wYXJlbnQtc3RlcHMvYXV0b21hdGlvbi1zdGVwJztcbmltcG9ydCB7IEF1dG9tYXRpb25TdGVwU2ltdWxhdGlvbiB9IGZyb20gJy4uL2F1dG9tYXRpb24tc3RlcC1zaW11bGF0aW9uJztcbmltcG9ydCB7IFNpbXVsYXRpb25Qcm9wcyB9IGZyb20gJy4uL3NpbXVsYXRpb24nO1xuXG5leHBvcnQgY2xhc3MgQXV0b21hdGlvblNpbXVsYXRpb24ge1xuICBwcml2YXRlIGF1dG9tYXRpb25Eb2N1bWVudDogQXV0b21hdGlvbkRvY3VtZW50O1xuICBwcml2YXRlIHByb3BzOiBTaW11bGF0aW9uUHJvcHM7XG5cbiAgY29uc3RydWN0b3IoYXV0b21hdGlvbkRvY3VtZW50OiBBdXRvbWF0aW9uRG9jdW1lbnQsIHByb3BzOiBTaW11bGF0aW9uUHJvcHMpIHtcbiAgICB0aGlzLmF1dG9tYXRpb25Eb2N1bWVudCA9IGF1dG9tYXRpb25Eb2N1bWVudDtcbiAgICB0aGlzLnByb3BzID0gcHJvcHM7XG4gIH1cblxuICAvKipcbiAgICogU3RhcnRzIHRoZSBleGVjdXRpb24gb2YgdGhlIHN0ZXBzIGJ5IGludm9raW5nIHRoZSBmaXJzdCBzdGVwLlxuICAgKiBUaGUgc3Vic2VxdWVudCBzdGVwcyB3aWxsIGJlIGludm9rZWQgYnkgdGhlIHN0ZXBzIHRoZW1zZWx2ZXMuXG4gICAqIEBwYXJhbSBpbnB1dHMgYWxsIG9mIHRoZSBpbnB1dHMgbmVjZXNzYXJ5IGZvciB0aGUgZG9jdW1lbnQgdG8gZXhlY3V0ZS5cbiAgICogQHJldHVybnMgdGhlIG91dHB1dHMgc3BlY2lmaWVkIGJ5IGFsbCB0aGUgc3RlcHMuXG4gICAqL1xuICBwdWJsaWMgc3RhcnQoaW5wdXRzOiB7IFtuYW1lOiBzdHJpbmddOiBhbnkgfSk6IFNpbXVsYXRpb25SZXN1bHQge1xuICAgIGNvbnN0IGRhdGVTdHJpbmcgPSBuZXcgRGF0ZSgpLnRvSVNPU3RyaW5nKCk7IC8vIEV4YW1wbGUgMjAyMS0xMC0wOFQwODo0NDowMi4xMDZaXG4gICAgaW5wdXRzWydnbG9iYWw6REFURSddID0gZGF0ZVN0cmluZy5zcGxpdCgnVCcpWzBdO1xuICAgIGlucHV0c1snZ2xvYmFsOkRBVEVfVElNRSddID0gZGF0ZVN0cmluZy5zcGxpdCgnLicpWzBdXG4gICAgICAucmVwbGFjZSgnVCcsICdfJykgLy8gRXhhbXBsZSAyMDIxLTEwLTA4XzA4OjQ0OjAyXG4gICAgICAucmVwbGFjZSgvOi9nLCAnLicpO1xuICAgIGNvbnN0IHByZWZpeCA9IE1hdGguZmxvb3IoTWF0aC5yYW5kb20oKSAqIDk5OTk5OSkudG9TdHJpbmcoKS5wYWRTdGFydCg2LCAnMCcpO1xuICAgIGlucHV0c1snYXV0b21hdGlvbjpFWEVDVVRJT05fSUQnXSA9IHByZWZpeCArICctMWEyYjNjLTFhMmIzYy0xYTJiM2MxYTJiM2MxYTJiM2MnO1xuXG4gICAgdGhpcy5hdXRvbWF0aW9uRG9jdW1lbnQuZG9jVmFyaWFibGVzPy5mb3JFYWNoKHYgPT4ge1xuICAgICAgaW5wdXRzW2B2YXJpYWJsZToke3YubmFtZX1gXSA9IHYuZGVmYXVsdFZhbHVlO1xuICAgIH0pO1xuXG4gICAgcmV0dXJuIG5ldyBBdXRvbWF0aW9uU3RlcFNpbXVsYXRpb24odGhpcy5jcmVhdGVDaGFpbih0aGlzLmF1dG9tYXRpb25Eb2N1bWVudC5jb2xsZWN0ZWRTdGVwcygpKSwgdGhpcy5wcm9wcykuaW52b2tlKGlucHV0cyk7XG4gIH1cblxuICAvKipcbiAgICogQ2hhaW5zIHRoZSBzdGVwcyB0b2dldGhlciBpbiB0aGVpciBkZWZhdWx0IG9yaWVudGF0aW9uIChsaWtlIGEgbGlua2VkIGxpc3QpLlxuICAgKiBUaGUgb3JkZXIgb2Ygc3RlcHMgY2FuIGNoYW5nZSBkZXBlbmRpbmcgb24gdGhlIHByb3BlcnRpZXMgcHJvdmlkZWQgdG8gdGhlIHN0ZXBzLlxuICAgKiBAcmV0dXJucyB0aGUgZmlyc3Qgc3RlcCBvZiB0aGUgY2hhaW5cbiAgICovXG4gIHByaXZhdGUgY3JlYXRlQ2hhaW4oc3RlcHM6IEF1dG9tYXRpb25TdGVwW10pOiBBdXRvbWF0aW9uU3RlcCB7XG4gICAgY29uc3QgZmlyc3RTdGVwID0gc3RlcHNbMF07XG4gICAgbGV0IHByZXZpb3VzU3RlcDogQXV0b21hdGlvblN0ZXAgPSBmaXJzdFN0ZXA7XG4gICAgc3RlcHMuc2xpY2UoMSkuZm9yRWFjaChzID0+IHtcbiAgICAgIHByZXZpb3VzU3RlcC5uZXh0U3RlcCA9IHByZXZpb3VzU3RlcC5leHBsaWNpdE5leHRTdGVwPy5yZXNvbHZlKHN0ZXBzKSA/PyBzO1xuICAgICAgcHJldmlvdXNTdGVwLmFsbFN0ZXBzSW5FeGVjdXRpb24gPSBzdGVwcztcbiAgICAgIHByZXZpb3VzU3RlcCA9IHM7XG4gICAgfSk7XG4gICAgcmV0dXJuIGZpcnN0U3RlcDtcbiAgfVxufVxuIl19
@@ -42,5 +42,5 @@ class CommandSimulation {
42
42
  }
43
43
  exports.CommandSimulation = CommandSimulation;
44
44
  _a = JSII_RTTI_SYMBOL_1;
45
- CommandSimulation[_a] = { fqn: "@cdklabs/cdk-ssm-documents.CommandSimulation", version: "0.0.58" };
45
+ CommandSimulation[_a] = { fqn: "@cdklabs/cdk-ssm-documents.CommandSimulation", version: "0.0.60" };
46
46
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tbWFuZC1zaW11bGF0aW9uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3NpbXVsYXRpb24vZG9jdW1lbnQvY29tbWFuZC1zaW11bGF0aW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQ0Esb0RBQWlEO0FBRWpELDZEQUFpRTtBQUVqRSx3RUFBbUc7QUFHbkcsTUFBYSxpQkFBaUI7SUFJNUIsWUFBWSxlQUFnQyxFQUFFLEtBQXNCO1FBQ2xFLElBQUksQ0FBQyxlQUFlLEdBQUcsZUFBZSxDQUFDO1FBQ3ZDLElBQUksQ0FBQyxLQUFLLEdBQUc7WUFDWCxXQUFXLEVBQUUsS0FBSyxDQUFDLFdBQVcsSUFBSSxJQUFJLGdDQUFrQixFQUFFO1lBQzFELGtCQUFrQixFQUFFLEtBQUssQ0FBQyxrQkFBa0IsSUFBSSxtQkFBUSxDQUFDLEtBQUs7U0FDL0QsQ0FBQztJQUNKLENBQUM7SUFFTSxLQUFLLENBQUMsTUFBK0I7UUFDMUMsTUFBTSxVQUFVLEdBQUcsSUFBSSxJQUFJLEVBQUUsQ0FBQyxXQUFXLEVBQUUsQ0FBQyxDQUFDLG1DQUFtQztRQUNoRixNQUFNLENBQUMsYUFBYSxDQUFDLEdBQUcsVUFBVSxDQUFDLEtBQUssQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUNqRCxNQUFNLENBQUMsa0JBQWtCLENBQUMsR0FBRyxVQUFVLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQzthQUNsRCxPQUFPLENBQUMsR0FBRyxFQUFFLEdBQUcsQ0FBQyxDQUFDLDhCQUE4QjthQUNoRCxPQUFPLENBQUMsSUFBSSxFQUFFLEdBQUcsQ0FBQyxDQUFDO1FBQ3RCLE1BQU0sTUFBTSxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLE1BQU0sRUFBRSxHQUFHLE1BQU0sQ0FBQyxDQUFDLFFBQVEsRUFBRSxDQUFDLFFBQVEsQ0FBQyxDQUFDLEVBQUUsR0FBRyxDQUFDLENBQUM7UUFDOUUsTUFBTSxDQUFDLHlCQUF5QixDQUFDLEdBQUcsTUFBTSxHQUFHLG1DQUFtQyxDQUFDO1FBQ2pGLE9BQU8sSUFBSSwrQ0FBcUIsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxlQUFlLENBQUMsY0FBYyxFQUFFLENBQUMsRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxDQUFDO0lBQ3ZILENBQUM7SUFFRDs7OztPQUlHO0lBQ0ssV0FBVyxDQUFDLEtBQW9CO1FBQ3RDLE1BQU0sU0FBUyxHQUFHLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUMzQixJQUFJLFlBQVksR0FBZ0IsU0FBUyxDQUFDO1FBQzFDLEtBQUssQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxFQUFFO1lBQ3pCLFlBQVksQ0FBQyxRQUFRLEdBQUcsQ0FBQyxDQUFDO1lBQzFCLFlBQVksQ0FBQyxtQkFBbUIsR0FBRyxLQUFLLENBQUM7WUFDekMsWUFBWSxHQUFHLENBQUMsQ0FBQztRQUNuQixDQUFDLENBQUMsQ0FBQztRQUNILE9BQU8sU0FBUyxDQUFDO0lBQ25CLENBQUM7O0FBckNILDhDQXNDQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1hbmREb2N1bWVudCB9IGZyb20gJy4uLy4uL2RvY3VtZW50L2NvbW1hbmQtZG9jdW1lbnQnO1xuaW1wb3J0IHsgUGxhdGZvcm0gfSBmcm9tICcuLi8uLi9kb21haW4vcGxhdGZvcm0nO1xuaW1wb3J0IHsgU2ltdWxhdGlvblJlc3VsdCB9IGZyb20gJy4uLy4uL2RvbWFpbi9zaW11bGF0aW9uLXJlc3VsdCc7XG5pbXBvcnQgeyBMb2dnaW5nRW52aXJvbm1lbnQgfSBmcm9tICcuLi8uLi9pbnRlcmZhY2UvZW52aXJvbm1lbnQnO1xuaW1wb3J0IHsgQ29tbWFuZFN0ZXAgfSBmcm9tICcuLi8uLi9wYXJlbnQtc3RlcHMvY29tbWFuZC1zdGVwJztcbmltcG9ydCB7IENvbW1hbmRTdGVwU2ltdWxhdGlvbiwgUmVxdWlyZWRDb21tYW5kU2ltdWxhdGlvblByb3BzIH0gZnJvbSAnLi4vY29tbWFuZC1zdGVwLXNpbXVsYXRpb24nO1xuaW1wb3J0IHsgU2ltdWxhdGlvblByb3BzIH0gZnJvbSAnLi4vc2ltdWxhdGlvbic7XG5cbmV4cG9ydCBjbGFzcyBDb21tYW5kU2ltdWxhdGlvbiB7XG4gIHByaXZhdGUgY29tbWFuZERvY3VtZW50OiBDb21tYW5kRG9jdW1lbnQ7XG4gIHByaXZhdGUgcHJvcHM6IFJlcXVpcmVkQ29tbWFuZFNpbXVsYXRpb25Qcm9wcztcblxuICBjb25zdHJ1Y3Rvcihjb21tYW5kRG9jdW1lbnQ6IENvbW1hbmREb2N1bWVudCwgcHJvcHM6IFNpbXVsYXRpb25Qcm9wcykge1xuICAgIHRoaXMuY29tbWFuZERvY3VtZW50ID0gY29tbWFuZERvY3VtZW50O1xuICAgIHRoaXMucHJvcHMgPSB7XG4gICAgICBlbnZpcm9ubWVudDogcHJvcHMuZW52aXJvbm1lbnQgPz8gbmV3IExvZ2dpbmdFbnZpcm9ubWVudCgpLFxuICAgICAgc2ltdWxhdGlvblBsYXRmb3JtOiBwcm9wcy5zaW11bGF0aW9uUGxhdGZvcm0gPz8gUGxhdGZvcm0uTElOVVgsXG4gICAgfTtcbiAgfVxuXG4gIHB1YmxpYyBzdGFydChpbnB1dHM6IHsgW25hbWU6IHN0cmluZ106IGFueSB9KTogU2ltdWxhdGlvblJlc3VsdCB7XG4gICAgY29uc3QgZGF0ZVN0cmluZyA9IG5ldyBEYXRlKCkudG9JU09TdHJpbmcoKTsgLy8gRXhhbXBsZSAyMDIxLTEwLTA4VDA4OjQ0OjAyLjEwNlpcbiAgICBpbnB1dHNbJ2dsb2JhbDpEQVRFJ10gPSBkYXRlU3RyaW5nLnNwbGl0KCdUJylbMF07XG4gICAgaW5wdXRzWydnbG9iYWw6REFURV9USU1FJ10gPSBkYXRlU3RyaW5nLnNwbGl0KCcuJylbMF1cbiAgICAgIC5yZXBsYWNlKCdUJywgJ18nKSAvLyBFeGFtcGxlIDIwMjEtMTAtMDhfMDg6NDQ6MDJcbiAgICAgIC5yZXBsYWNlKC86L2csICcuJyk7XG4gICAgY29uc3QgcHJlZml4ID0gTWF0aC5mbG9vcihNYXRoLnJhbmRvbSgpICogOTk5OTk5KS50b1N0cmluZygpLnBhZFN0YXJ0KDYsICcwJyk7XG4gICAgaW5wdXRzWydhdXRvbWF0aW9uOkVYRUNVVElPTl9JRCddID0gcHJlZml4ICsgJy0xYTJiM2MtMWEyYjNjLTFhMmIzYzFhMmIzYzFhMmIzYyc7XG4gICAgcmV0dXJuIG5ldyBDb21tYW5kU3RlcFNpbXVsYXRpb24odGhpcy5jcmVhdGVDaGFpbih0aGlzLmNvbW1hbmREb2N1bWVudC5jb2xsZWN0ZWRTdGVwcygpKSwgdGhpcy5wcm9wcykuaW52b2tlKGlucHV0cyk7XG4gIH1cblxuICAvKipcbiAgICogQ2hhaW5zIHRoZSBzdGVwcyB0b2dldGhlciBpbiB0aGVpciBkZWZhdWx0IG9yaWVudGF0aW9uIChsaWtlIGEgbGlua2VkIGxpc3QpLlxuICAgKiBUaGUgb3JkZXIgb2Ygc3RlcHMgY2FuIGNoYW5nZSBkZXBlbmRpbmcgb24gdGhlIHByb3BlcnRpZXMgcHJvdmlkZWQgdG8gdGhlIHN0ZXBzLlxuICAgKiBAcmV0dXJucyB0aGUgZmlyc3Qgc3RlcCBvZiB0aGUgY2hhaW5cbiAgICovXG4gIHByaXZhdGUgY3JlYXRlQ2hhaW4oc3RlcHM6IENvbW1hbmRTdGVwW10pOiBDb21tYW5kU3RlcCB7XG4gICAgY29uc3QgZmlyc3RTdGVwID0gc3RlcHNbMF07XG4gICAgbGV0IHByZXZpb3VzU3RlcDogQ29tbWFuZFN0ZXAgPSBmaXJzdFN0ZXA7XG4gICAgc3RlcHMuc2xpY2UoMSkuZm9yRWFjaChzID0+IHtcbiAgICAgIHByZXZpb3VzU3RlcC5uZXh0U3RlcCA9IHM7XG4gICAgICBwcmV2aW91c1N0ZXAuYWxsU3RlcHNJbkV4ZWN1dGlvbiA9IHN0ZXBzO1xuICAgICAgcHJldmlvdXNTdGVwID0gcztcbiAgICB9KTtcbiAgICByZXR1cm4gZmlyc3RTdGVwO1xuICB9XG59XG4iXX0=
@@ -83,5 +83,5 @@ class Simulation {
83
83
  }
84
84
  exports.Simulation = Simulation;
85
85
  _a = JSII_RTTI_SYMBOL_1;
86
- Simulation[_a] = { fqn: "@cdklabs/cdk-ssm-documents.Simulation", version: "0.0.58" };
86
+ Simulation[_a] = { fqn: "@cdklabs/cdk-ssm-documents.Simulation", version: "0.0.60" };
87
87
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2ltdWxhdGlvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9zaW11bGF0aW9uL3NpbXVsYXRpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFHQSxtREFBK0M7QUFHL0MsMkRBQXVEO0FBWXZELDRFQUF3RTtBQUN4RSxzRUFBa0U7QUF1R2xFLE1BQWEsVUFBVTtJQUVkLE1BQU0sQ0FBQyxZQUFZLENBQUMsUUFBNEIsRUFBRSxLQUFnQztRQUN2RixPQUFPLElBQUksVUFBVSxDQUFDLFFBQVEsRUFBRSxLQUFLLENBQUMsQ0FBQztJQUN6QyxDQUFDO0lBRU0sTUFBTSxDQUFDLFNBQVMsQ0FBQyxRQUF5QixFQUFFLEtBQTZCO1FBQzlFLE9BQU8sSUFBSSxVQUFVLENBQUMsUUFBUSxFQUFFLEtBQUssQ0FBQyxDQUFDO0lBQ3pDLENBQUM7SUFLRCxZQUFvQixRQUFxQixFQUFFLEtBQXNCO1FBQy9ELElBQUksQ0FBQyxRQUFRLEdBQUcsUUFBUSxDQUFDO1FBQ3pCLElBQUksQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFDO0lBQ3JCLENBQUM7SUFHRDs7Ozs7Ozs7OztPQVVHO0lBQ0ksUUFBUSxDQUFDLE1BQStCO1FBQzdDLElBQUksQ0FBQyxRQUFRLENBQUMsU0FBUyxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsRUFBRTtZQUN6QyxJQUFJLE1BQU0sQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLElBQUksU0FBUyxFQUFFLENBQUM7Z0JBQ3ZDLE1BQU0sQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLEdBQUcsUUFBUSxDQUFDLFlBQVksQ0FBQztnQkFDOUMsSUFBSSxRQUFRLENBQUMsWUFBWSxJQUFJLFNBQVMsRUFBRSxDQUFDO29CQUN2QyxNQUFNLElBQUksS0FBSyxDQUFDLDBCQUEwQixRQUFRLENBQUMsSUFBSSxvQ0FBb0MsQ0FBQyxDQUFDO2dCQUMvRixDQUFDO1lBQ0gsQ0FBQztRQUNILENBQUMsQ0FBQyxDQUFDO1FBQ0gsS0FBSyxJQUFJLEdBQUcsSUFBSSxNQUFNLEVBQUUsQ0FBQztZQUN2QixNQUFNLEtBQUssR0FBRyxNQUFNLENBQUMsR0FBRyxDQUFDLENBQUM7WUFDMUIsTUFBTSxZQUFZLEdBQUcsSUFBSSxDQUFDLFFBQVEsQ0FBQyxTQUFTLENBQUMsTUFBTSxDQUFDLFFBQVEsQ0FBQyxFQUFFLENBQUMsUUFBUSxDQUFDLElBQUksSUFBSSxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztZQUN6RixJQUFJLFlBQVksSUFBSSxTQUFTLEVBQUUsQ0FBQztnQkFDOUIsTUFBTSxJQUFJLEtBQUssQ0FBQyxpQ0FBaUMsR0FBRyxJQUFJLEtBQUssOENBQThDLENBQUMsQ0FBQztZQUMvRyxDQUFDO1lBQ0QsSUFBSSxDQUFDO2dCQUNILFlBQVksQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDLENBQUM7WUFDL0IsQ0FBQztZQUFDLE9BQU8sQ0FBQyxFQUFFLENBQUM7Z0JBQ1gsTUFBTSxPQUFPLEdBQUksQ0FBVyxDQUFDLE9BQU8sQ0FBQztnQkFDckMsTUFBTSxJQUFJLEtBQUssQ0FBQyxpQ0FBaUMsR0FBRyxJQUFJLEtBQUssd0JBQXdCLE9BQU8sRUFBRSxDQUFDLENBQUM7WUFDbEcsQ0FBQztRQUNILENBQUM7UUFDRCxNQUFNLGdCQUFnQixHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDNUMsSUFBSSxZQUFZLEdBQUcsRUFBRSxDQUFDO1FBQ3RCLElBQUksZ0JBQWdCLENBQUMsWUFBWSxJQUFJLDRCQUFZLENBQUMsT0FBTyxFQUFFLENBQUM7WUFDMUQsWUFBWSxHQUFHLElBQUksQ0FBQyxRQUFRLENBQUMsVUFBVSxDQUFDLEdBQUcsQ0FBQyxTQUFTLENBQUMsRUFBRTtnQkFDdEQsTUFBTSxhQUFhLEdBQUcsQ0FBQyxnQkFBZ0IsQ0FBQyxPQUFPLElBQUksRUFBRSxDQUFDLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxDQUFDO2dCQUN2RSxJQUFJLENBQUMsSUFBSSxvQkFBUSxDQUFDLFNBQVMsQ0FBQyxVQUFVLENBQUMsQ0FBQyxZQUFZLENBQUMsYUFBYSxDQUFDLEVBQUUsQ0FBQztvQkFDcEUsTUFBTSxJQUFJLEtBQUssQ0FBQyxtQkFBbUIsU0FBUyxDQUFDLElBQUksdUJBQXVCLFNBQVMsQ0FBQyxVQUFVLEtBQUssYUFBYSxFQUFFLENBQUMsQ0FBQztnQkFDcEgsQ0FBQztnQkFDRCxPQUFPLGFBQWEsQ0FBQztZQUN2QixDQUFDLENBQUMsQ0FBQztRQUNMLENBQUM7UUFDRCxPQUFPLEVBQUUsR0FBRyxFQUFFLGVBQWUsRUFBRSxZQUFZLEVBQUUsRUFBRSxHQUFHLGdCQUFnQixFQUFFLENBQUM7SUFDdkUsQ0FBQztJQUVEOzs7O09BSUc7SUFDTyxLQUFLLENBQUMsTUFBK0I7UUFDN0MsUUFBUSxJQUFJLENBQUMsUUFBUSxDQUFDLFlBQVksRUFBRSxFQUFFLENBQUM7WUFDckMsS0FBSyxDQUFDLFlBQVksQ0FBQztnQkFDakIsT0FBTyxJQUFJLDRDQUFvQixDQUFzQixJQUFJLENBQUMsUUFBUSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUM7WUFDaEcsS0FBSyxDQUFDLFNBQVMsQ0FBQztnQkFDZCxPQUFPLElBQUksc0NBQWlCLENBQW1CLElBQUksQ0FBQyxRQUFRLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQztZQUMxRjtnQkFDRSxNQUFNLElBQUksS0FBSyxDQUFDLGdEQUFnRCxHQUFHLElBQUksQ0FBQyxRQUFRLENBQUMsWUFBWSxFQUFFLENBQUMsQ0FBQztRQUNyRyxDQUFDO0lBQ0gsQ0FBQzs7QUFoRkgsZ0NBbUZDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQXV0b21hdGlvbkRvY3VtZW50IH0gZnJvbSAnLi4vZG9jdW1lbnQvYXV0b21hdGlvbi1kb2N1bWVudCc7XG5pbXBvcnQgeyBDb21tYW5kRG9jdW1lbnQgfSBmcm9tICcuLi9kb2N1bWVudC9jb21tYW5kLWRvY3VtZW50JztcbmltcG9ydCB7IFNzbURvY3VtZW50IH0gZnJvbSAnLi4vZG9jdW1lbnQvc3NtLWRvY3VtZW50JztcbmltcG9ydCB7IERhdGFUeXBlIH0gZnJvbSAnLi4vZG9tYWluL2RhdGEtdHlwZSc7XG5pbXBvcnQgeyBEb2N1bWVudFJlc3VsdCB9IGZyb20gJy4uL2RvbWFpbi9kb2N1bWVudC1yZXN1bHQnO1xuaW1wb3J0IHsgUGxhdGZvcm0gfSBmcm9tICcuLi9kb21haW4vcGxhdGZvcm0nO1xuaW1wb3J0IHsgUmVzcG9uc2VDb2RlIH0gZnJvbSAnLi4vZG9tYWluL3Jlc3BvbnNlLWNvZGUnO1xuaW1wb3J0IHsgU2ltdWxhdGlvblJlc3VsdCB9IGZyb20gJy4uL2RvbWFpbi9zaW11bGF0aW9uLXJlc3VsdCc7XG5pbXBvcnQgeyBJQXBwcm92ZUhvb2sgfSBmcm9tICcuLi9pbnRlcmZhY2UvYXBwcm92ZS1ob29rJztcbmltcG9ydCB7IElBd3NJbnZva2VyIH0gZnJvbSAnLi4vaW50ZXJmYWNlL2F3cy1pbnZva2VyJztcbmltcG9ydCB7IElFbnZpcm9ubWVudCB9IGZyb20gJy4uL2ludGVyZmFjZS9lbnZpcm9ubWVudCc7XG5pbXBvcnQgeyBJRXhlY3V0ZUF1dG9tYXRpb25Ib29rIH0gZnJvbSAnLi4vaW50ZXJmYWNlL2V4ZWN1dGUtYXV0b21hdGlvbi1ob29rJztcbmltcG9ydCB7IElPYnNlcnZlciB9IGZyb20gJy4uL2ludGVyZmFjZS9vYnNlcnZlcic7XG5pbXBvcnQgeyBJUGF1c2VIb29rIH0gZnJvbSAnLi4vaW50ZXJmYWNlL3BhdXNlLWhvb2snO1xuaW1wb3J0IHsgSVJ1bkNvbW1hbmRIb29rIH0gZnJvbSAnLi4vaW50ZXJmYWNlL3J1bi1jb21tYW5kLWhvb2snO1xuaW1wb3J0IHsgSVNsZWVwSG9vayB9IGZyb20gJy4uL2ludGVyZmFjZS9zbGVlcC1ob29rJztcbmltcG9ydCB7IElXZWJob29rIH0gZnJvbSAnLi4vaW50ZXJmYWNlL3dlYmhvb2snO1xuaW1wb3J0IHsgSVBhcmFtZXRlclJlc29sdmVyIH0gZnJvbSAnLi4vcGFyZW50LXN0ZXBzL2F1dG9tYXRpb24vY3JlYXRlLXN0YWNrLXN0ZXAnO1xuaW1wb3J0IHsgQXV0b21hdGlvblNpbXVsYXRpb24gfSBmcm9tICcuL2RvY3VtZW50L2F1dG9tYXRpb24tc2ltdWxhdGlvbic7XG5pbXBvcnQgeyBDb21tYW5kU2ltdWxhdGlvbiB9IGZyb20gJy4vZG9jdW1lbnQvY29tbWFuZC1zaW11bGF0aW9uJztcblxuZXhwb3J0IGludGVyZmFjZSBBdXRvbWF0aW9uU2ltdWxhdGlvblByb3BzIHtcblxuICAvKipcbiAgICogKE9wdGlvbmFsKSBIb29rIHRvIGluamVjdCBhbHRlcm5hdGUgSVNsZWVwZXIgKHRvIG1vY2sgdGhlIHNsZWVwIGJldHdlZW4gZmFpbGVkIGludm9jYXRpb25zKS5cbiAgICogQGRlZmF1bHQgLSByZWFsbHkgcGVyZm9ybSBzbGVlcCB1c2luZyBTbGVlcGVySW1wbCBjbGFzcy5cbiAgICovXG4gIHJlYWRvbmx5IHNsZWVwSG9vaz86IElTbGVlcEhvb2s7XG5cbiAgLyoqXG4gICAqIChPcHRpb25hbCkgVXNlIHRoaXMgYXMgYSBob29rIHRvIGluamVjdCBhbiBhbHRlcm5hdGUgSUF3c0ludm9rZXIgKGZvciBtb2NraW5nIHRoZSBBV1MgQVBJIGNhbGwpLlxuICAgKiBAZGVmYXVsdCAtIHdpbGwgcGVyZm9ybSBhIHJlYWwgaW52b2NhdGlvbiBvZiB0aGUgSmF2YVNjcmlwdCBBV1MgU0RLIHVzaW5nIFJlZmxlY3RpdmVBd3NJbnZva2VyIGNsYXNzLlxuICAgKi9cbiAgcmVhZG9ubHkgYXdzSW52b2tlcj86IElBd3NJbnZva2VyO1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIFBhdXNlIGhvb2sgdG8gYmUgY2FsbGVkIHRvIHBhdXNlIHRoZSBleGVjdXRpb24uXG4gICAqIFRvIG1vY2sgdGhpcyBpbXBsZW1lbmF0aW9uIGVpdGhlciBpbmplY3QgYW4gaW5zdGFuY2Ugb2YgSVBhdXNlSG9vayBvciB1c2UgdGhlIHByb3ZpZGVkIE1vY2tQYXVzZSBjbGFzcy5cbiAgICogQGRlZmF1bHQgUGF1c2VIb29rIGluc3RhbmNlLiBQYXVzZUhvb2sgbWF5IG5vdCB3b3JrIGluIGV4cG9ydGVkIEpTSUkgbGFuZ3VhZ2VzLiBPdmVycmlkZSBpbnRlcmZhY2UgYXMgbmVlZGVkLlxuICAgKi9cbiAgcmVhZG9ubHkgcGF1c2VIb29rPzogSVBhdXNlSG9vaztcblxuICAvKipcbiAgICogKE9wdGlvbmFsKSBBbGxvd3MgZm9yIG9ic2VydmluZyB0aGUgaW5wdXQgdG8gc3RlcHMgYXMgdGhleSBydW4uXG4gICAqIEBkZWZhdWx0IE5vb3BPYnNlcnZlclxuICAgKi9cbiAgcmVhZG9ubHkgaW5wdXRPYnNlcnZlcj86IElPYnNlcnZlcjtcblxuICAvKipcbiAgICogKE9wdGlvbmFsKSBBbGxvd3MgZm9yIG9ic2VydmluZyB0aGUgb3V0cHV0IG9mIHN0ZXBzIGFzIHRoZXkgcnVuLlxuICAgKiBAZGVmYXVsdCBOb29wT2JzZXJ2ZXJcbiAgICovXG4gIHJlYWRvbmx5IG91dHB1dE9ic2VydmVyPzogSU9ic2VydmVyO1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIEFwcHJvdmUgaG9vayB0byBiZSBjYWxsZWQgdG8gcGF1c2UgdGhlIGV4ZWN1dGlvbi5cbiAgICogVG8gbW9jayB0aGlzIGltcGxlbWVudGF0aW9uIGVpdGhlciBpbmplY3QgYW4gaW5zdGFuY2Ugb2YgSUFwcHJvdmVIb29rIG9yIHVzZSB0aGUgcHJvdmlkZWQgTW9ja0FwcHJvdmUgY2xhc3MuXG4gICAqIEBkZWZhdWx0IEFwcHJvdmVIb29rIGluc3RhbmNlLiBBcHByb3ZlSG9vayBtYXkgbm90IHdvcmsgaW4gZXhwb3J0ZWQgSlNJSSBsYW5ndWFnZXMuIE92ZXJyaWRlIGludGVyZmFjZSBhcyBuZWVkZWQuXG4gICAqL1xuICByZWFkb25seSBhcHByb3ZlSG9vaz86IElBcHByb3ZlSG9vaztcblxuICAvKipcbiAgICogKE9wdGlvbmFsKSBSZXNvbHZlciBmb3Igc2VjdXJlIHN0cmluZ3MgaW4gcGFyYW1ldGVycy5cbiAgICogUmVxdWlyZWQgdG8gc2ltdWxhdGUgaWYgdXNpbmcgdG9rZW5zIGluIHBhcmFtZXRlcnMgaW5wdXQuXG4gICAqIEBkZWZhdWx0IC0gVHJlYXRzIHBhcmFtZXRlcnMgYXMgbGl0ZXJhbFxuICAgKi9cbiAgcmVhZG9ubHkgcGFyYW1ldGVyUmVzb2x2ZXI/OiBJUGFyYW1ldGVyUmVzb2x2ZXI7XG5cbiAgLyoqXG4gICAqIChPcHRpb25hbCkgSG9vayBmb3Igc2ltdWxhdGluZyBhd3M6aW52b2tlV2ViaG9va1xuICAgKiBAZGVmYXVsdCAtIFJldHVybnMgMjA0IHdpdGggYW4gZW1wdHkgcmVzcG9uc2VcbiAgICovXG4gIHJlYWRvbmx5IHdlYmhvb2s/OiBJV2ViaG9vaztcblxuICAvKipcbiAgICogSG9vayBmb3Igc2ltdWxhdGluZyBhd3M6cnVuQ29tbWFuZC5cbiAgICogQGRlZmF1bHQgLSBVc2VzIEFXUyBBUEkgdG8gZXhlY3V0ZSB0aGUgZG9jdW1lbnQgcmVtb3RlbHkuXG4gICAqL1xuICByZWFkb25seSBydW5Db21tYW5kSG9vaz86IElSdW5Db21tYW5kSG9vaztcblxuICAvKipcbiAgICogSG9vayBmb3Igc2ltdWxhdGluZyBhd3M6ZXhlY3V0ZUF1dG9tYXRpb24uXG4gICAqIEBkZWZhdWx0IC0gVXNlcyBBV1MgQVBJIHRvIGV4ZWN1dGUgdGhlIGRvY3VtZW50IHJlbW90ZWx5LlxuICAgKi9cbiAgcmVhZG9ubHkgZXhlY3V0ZUF1dG9tYXRpb25Ib29rPzogSUV4ZWN1dGVBdXRvbWF0aW9uSG9vaztcbn1cblxuXG5leHBvcnQgaW50ZXJmYWNlIENvbW1hbmRTaW11bGF0aW9uUHJvcHMge1xuICAvKipcbiAgICogKE9wdGlvbmFsKSBTcGVjaWZ5IGhlcmUgdGhlIGVudmlyb25tZW50IGluIHdoaWNoIHRvIGV4ZWN1dGUgdGhlIHNjcmlwdHMuXG4gICAqIFVzZSB0aGUgRG9ja2VyRW52aXJvbm1lbnQgdG8gZXhlY3V0ZSB0aGUgY29tbWFuZHMgaW5zaWRlIHRoZSBkb2NrZXIuXG4gICAqIFlvdSBjYW4gYWx0ZXJuYXRpdmVseSB1c2UgdGhlIExvZ2dpbmdFbnZpcm9ubWVudCB3aGljaCBzaW1wbHkgbG9ncyB0aGUgY29tbWFuZHNcbiAgICogb3IgTW9ja0Vudmlyb25tZW50IHdoaWNoIHNhdmVzIHRoZW0gZm9yIHZhbGlkYXRpb24uXG4gICAqIEBkZWZhdWx0IExvZ2dpbmdFbnZpcm9ubWVudFxuICAgKi9cbiAgcmVhZG9ubHkgZW52aXJvbm1lbnQ/OiBJRW52aXJvbm1lbnQ7XG5cbiAgLyoqXG4gICAqIFRoZSBQbGF0Zm9ybSB1c2VkIGluIGV4ZWN1dGluZyB0aGUgY29tbWFuZCBzdGVwLlxuICAgKi9cbiAgcmVhZG9ubHkgc2ltdWxhdGlvblBsYXRmb3JtOiBQbGF0Zm9ybTtcbn1cblxuXG4vKipcbiAqIFVuaXZlcnNlIG9mIEF1dG9tYXRpb24gYW5kIENvbW1hbmQgc2ltdWxhdGlvbiBwcm9wc1xuICovXG5leHBvcnQgaW50ZXJmYWNlIFNpbXVsYXRpb25Qcm9wcyB7XG4gIHJlYWRvbmx5IHNsZWVwSG9vaz86IElTbGVlcEhvb2s7XG4gIHJlYWRvbmx5IGF3c0ludm9rZXI/OiBJQXdzSW52b2tlcjtcbiAgcmVhZG9ubHkgcGF1c2VIb29rPzogSVBhdXNlSG9vaztcbiAgcmVhZG9ubHkgaW5wdXRPYnNlcnZlcj86IElPYnNlcnZlcjtcbiAgcmVhZG9ubHkgb3V0cHV0T2JzZXJ2ZXI/OiBJT2JzZXJ2ZXI7XG4gIHJlYWRvbmx5IGFwcHJvdmVIb29rPzogSUFwcHJvdmVIb29rO1xuICByZWFkb25seSBwYXJhbWV0ZXJSZXNvbHZlcj86IElQYXJhbWV0ZXJSZXNvbHZlcjtcbiAgcmVhZG9ubHkgd2ViaG9vaz86IElXZWJob29rO1xuICByZWFkb25seSBydW5Db21tYW5kSG9vaz86IElSdW5Db21tYW5kSG9vaztcbiAgcmVhZG9ubHkgZW52aXJvbm1lbnQ/OiBJRW52aXJvbm1lbnQ7XG4gIHJlYWRvbmx5IHNpbXVsYXRpb25QbGF0Zm9ybT86IFBsYXRmb3JtO1xufVxuXG5leHBvcnQgY2xhc3MgU2ltdWxhdGlvbiB7XG5cbiAgcHVibGljIHN0YXRpYyBvZkF1dG9tYXRpb24oZG9jdW1lbnQ6IEF1dG9tYXRpb25Eb2N1bWVudCwgcHJvcHM6IEF1dG9tYXRpb25TaW11bGF0aW9uUHJvcHMpIHtcbiAgICByZXR1cm4gbmV3IFNpbXVsYXRpb24oZG9jdW1lbnQsIHByb3BzKTtcbiAgfVxuXG4gIHB1YmxpYyBzdGF0aWMgb2ZDb21tYW5kKGRvY3VtZW50OiBDb21tYW5kRG9jdW1lbnQsIHByb3BzOiBDb21tYW5kU2ltdWxhdGlvblByb3BzKSB7XG4gICAgcmV0dXJuIG5ldyBTaW11bGF0aW9uKGRvY3VtZW50LCBwcm9wcyk7XG4gIH1cblxuICByZWFkb25seSBkb2N1bWVudDogU3NtRG9jdW1lbnQ7XG4gIHJlYWRvbmx5IHByb3BzOiBTaW11bGF0aW9uUHJvcHM7XG5cbiAgcHJpdmF0ZSBjb25zdHJ1Y3Rvcihkb2N1bWVudDogU3NtRG9jdW1lbnQsIHByb3BzOiBTaW11bGF0aW9uUHJvcHMpIHtcbiAgICB0aGlzLmRvY3VtZW50ID0gZG9jdW1lbnQ7XG4gICAgdGhpcy5wcm9wcyA9IHByb3BzO1xuICB9XG5cblxuICAvKipcbiAgICogU3ludGhlc2l6ZSBiZWZvcmUgY2FsbGluZyB0aGlzIGZ1bmN0aW9uIVxuICAgKiBZb3UgY2FuIHVzZSB0aGlzIHRvIFN5bnRoZXNpemU6IFN5bnRoVXRpbHMuc3ludGhlc2l6ZShzdGFjayk7XG4gICAqXG4gICAqIEV4ZWN1dGVzIHRoZSBTU00gRG9jdW1lbnQgaW4gc2ltdWxhdGlvbiBtb2RlLlxuICAgKiBUaGlzIG1ldGhvZCBET0VTIE5PVCByZXN1bHQgaW4gaW52b2NhdGlvbiBvZiBTU00gQVBJcy5cbiAgICogUmF0aGVyLCBhbGwgc3RlcHMgYXJlIGV4ZWN1dGVkIGxvY2FsbHkgYW5kIG1pbWljIHRoZSBiZWhhdmlvciBvZiBTU00uXG4gICAqIElmIGFueSBpbnB1dHMgYXJlIG5vdCBwcm92aWRlZCBpbiB0aGlzIGZ1bmN0aW9uLCB0aGUgc3BlY2lmaWVkIGRlZmF1bHRzIGZvciB0aGUgaW5wdXRzIHdpbGwgYmUgdXNlZC5cbiAgICogQHBhcmFtIGlucHV0cyB0aGUgaW5wdXRzIHRvIGZlZWQgaW50byB0aGUgc2ltdWxhdGVkIGV4ZWN1dGlvbi5cbiAgICogQHJldHVybnMgdGhlIG91dHB1dHMgb2YgYWxsIHRoZSBleGVjdXRlZCBzdGVwcy5cbiAgICovXG4gIHB1YmxpYyBzaW11bGF0ZShpbnB1dHM6IHsgW25hbWU6IHN0cmluZ106IGFueSB9KTogRG9jdW1lbnRSZXN1bHQge1xuICAgIHRoaXMuZG9jdW1lbnQuZG9jSW5wdXRzLmZvckVhY2goZG9jSW5wdXQgPT4ge1xuICAgICAgaWYgKGlucHV0c1tkb2NJbnB1dC5uYW1lXSA9PSB1bmRlZmluZWQpIHtcbiAgICAgICAgaW5wdXRzW2RvY0lucHV0Lm5hbWVdID0gZG9jSW5wdXQuZGVmYXVsdFZhbHVlO1xuICAgICAgICBpZiAoZG9jSW5wdXQuZGVmYXVsdFZhbHVlID09IHVuZGVmaW5lZCkge1xuICAgICAgICAgIHRocm93IG5ldyBFcnJvcihgVmFsdWUgbm90IHByb3ZpZGVkIGZvciAke2RvY0lucHV0Lm5hbWV9IGFuZCBubyBkZWZhdWx0IHZhbHVlIHdhcyBwcm92aWRlZGApO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfSk7XG4gICAgZm9yIChsZXQga2V5IGluIGlucHV0cykge1xuICAgICAgY29uc3QgdmFsdWUgPSBpbnB1dHNba2V5XTtcbiAgICAgIGNvbnN0IG1hdGNoZWRJbnB1dCA9IHRoaXMuZG9jdW1lbnQuZG9jSW5wdXRzLmZpbHRlcihkb2NJbnB1dCA9PiBkb2NJbnB1dC5uYW1lID09IGtleSlbMF07XG4gICAgICBpZiAobWF0Y2hlZElucHV0ID09IHVuZGVmaW5lZCkge1xuICAgICAgICB0aHJvdyBuZXcgRXJyb3IoYFZhbHVlIHByb3ZpZGVkIHRvIHNpbXVsYXRpb24geyR7a2V5fToke3ZhbHVlfX0gaXMgbm90IGEgc3VwcG9ydGVkIGlucHV0IGZvciB0aGlzIGRvY3VtZW50YCk7XG4gICAgICB9XG4gICAgICB0cnkge1xuICAgICAgICBtYXRjaGVkSW5wdXQudmFsaWRhdGUodmFsdWUpO1xuICAgICAgfSBjYXRjaCAoZSkge1xuICAgICAgICBjb25zdCBtZXNzYWdlID0gKGUgYXMgRXJyb3IpLm1lc3NhZ2U7XG4gICAgICAgIHRocm93IG5ldyBFcnJvcihgVmFsdWUgcHJvdmlkZWQgdG8gc2ltdWxhdGlvbiB7JHtrZXl9OiR7dmFsdWV9fSBmYWlsZWQgdmFsaWRhdGlvbjogJHttZXNzYWdlfWApO1xuICAgICAgfVxuICAgIH1cbiAgICBjb25zdCBzaW11bGF0aW9uUmVzdWx0ID0gdGhpcy5zdGFydChpbnB1dHMpO1xuICAgIHZhciBvdXRwdXRWYWx1ZXMgPSBbXTtcbiAgICBpZiAoc2ltdWxhdGlvblJlc3VsdC5yZXNwb25zZUNvZGUgPT0gUmVzcG9uc2VDb2RlLlNVQ0NFU1MpIHtcbiAgICAgIG91dHB1dFZhbHVlcyA9IHRoaXMuZG9jdW1lbnQuZG9jT3V0cHV0cy5tYXAoZG9jT3V0cHV0ID0+IHtcbiAgICAgICAgY29uc3QgdmFsdWVPZk91dHB1dCA9IChzaW11bGF0aW9uUmVzdWx0Lm91dHB1dHMgPz8ge30pW2RvY091dHB1dC5uYW1lXTtcbiAgICAgICAgaWYgKCFuZXcgRGF0YVR5cGUoZG9jT3V0cHV0Lm91dHB1dFR5cGUpLnZhbGlkYXRlVHlwZSh2YWx1ZU9mT3V0cHV0KSkge1xuICAgICAgICAgIHRocm93IG5ldyBFcnJvcihgRG9jdW1lbnQgb3V0cHV0ICR7ZG9jT3V0cHV0Lm5hbWV9IGRpZCBub3QgbWF0Y2ggdHlwZSAke2RvY091dHB1dC5vdXRwdXRUeXBlfTogJHt2YWx1ZU9mT3V0cHV0fWApO1xuICAgICAgICB9XG4gICAgICAgIHJldHVybiB2YWx1ZU9mT3V0cHV0O1xuICAgICAgfSk7XG4gICAgfVxuICAgIHJldHVybiB7IC4uLnsgZG9jdW1lbnRPdXRwdXRzOiBvdXRwdXRWYWx1ZXMgfSwgLi4uc2ltdWxhdGlvblJlc3VsdCB9O1xuICB9XG5cbiAgLyoqXG4gICAqIERlbGVnYXRlcyB0aGUgZXhlY3V0aW9uIG9mIHRoZSBEb2N1bWVudCB0byB0aGUgc3ViY2xhc3MgKEF1dG9tYXRpb24sIGV0YykuXG4gICAqIEBwYXJhbSBpbnB1dHMgYSBtZXJnZSBvZiB0aGUgZGVmaW5lZCBpbnB1dHMgdG8gdGhlIGRvY3VtZW50IGFuZCB0aGUgZGVmYXVsdCB2YWx1ZXMgaWYgbm90IHN1cHBsaWVkLlxuICAgKiBAcmV0dXJucyB0aGUgb3V0cHV0cyB0aGF0IHdlcmUgZW1pdHRlZCBmcm9tIGFsbCBvZiB0aGUgc3RlcHMuXG4gICAqL1xuICBwcm90ZWN0ZWQgc3RhcnQoaW5wdXRzOiB7IFtuYW1lOiBzdHJpbmddOiBhbnkgfSk6IFNpbXVsYXRpb25SZXN1bHQge1xuICAgIHN3aXRjaCAodGhpcy5kb2N1bWVudC5kb2N1bWVudFR5cGUoKSkge1xuICAgICAgY2FzZSAoJ0F1dG9tYXRpb24nKTpcbiAgICAgICAgcmV0dXJuIG5ldyBBdXRvbWF0aW9uU2ltdWxhdGlvbig8QXV0b21hdGlvbkRvY3VtZW50PiB0aGlzLmRvY3VtZW50LCB0aGlzLnByb3BzKS5zdGFydChpbnB1dHMpO1xuICAgICAgY2FzZSAoJ0NvbW1hbmQnKTpcbiAgICAgICAgcmV0dXJuIG5ldyBDb21tYW5kU2ltdWxhdGlvbig8Q29tbWFuZERvY3VtZW50PiB0aGlzLmRvY3VtZW50LCB0aGlzLnByb3BzKS5zdGFydChpbnB1dHMpO1xuICAgICAgZGVmYXVsdDpcbiAgICAgICAgdGhyb3cgbmV3IEVycm9yKCdObyBzaW11bGF0aW9uIGF2YWlsYWJsZSBmb3IgZG9jdW1lbnQgb2YgdHlwZTogJyArIHRoaXMuZG9jdW1lbnQuZG9jdW1lbnRUeXBlKCkpO1xuICAgIH1cbiAgfVxuXG5cbn0iXX0=
@@ -1268,7 +1268,7 @@ const checkState$9 = async (client, input) => {
1268
1268
  }
1269
1269
  catch (exception) {
1270
1270
  reason = exception;
1271
- if (exception.name && exception.name == "ValidationError") {
1271
+ if (exception.name === "ValidationError") {
1272
1272
  return { state: utilWaiter.WaiterState.FAILURE, reason };
1273
1273
  }
1274
1274
  }
@@ -1520,7 +1520,7 @@ const checkState$8 = async (client, input) => {
1520
1520
  }
1521
1521
  catch (exception) {
1522
1522
  reason = exception;
1523
- if (exception.name && exception.name == "ValidationError") {
1523
+ if (exception.name === "ValidationError") {
1524
1524
  return { state: utilWaiter.WaiterState.FAILURE, reason };
1525
1525
  }
1526
1526
  }
@@ -1666,7 +1666,7 @@ const checkState$7 = async (client, input) => {
1666
1666
  }
1667
1667
  catch (exception) {
1668
1668
  reason = exception;
1669
- if (exception.name && exception.name == "ValidationError") {
1669
+ if (exception.name === "ValidationError") {
1670
1670
  return { state: utilWaiter.WaiterState.SUCCESS, reason };
1671
1671
  }
1672
1672
  }
@@ -1691,7 +1691,7 @@ const checkState$6 = async (client, input) => {
1691
1691
  }
1692
1692
  catch (exception) {
1693
1693
  reason = exception;
1694
- if (exception.name && exception.name == "ValidationError") {
1694
+ if (exception.name === "ValidationError") {
1695
1695
  return { state: utilWaiter.WaiterState.RETRY, reason };
1696
1696
  }
1697
1697
  }
@@ -1807,7 +1807,7 @@ const checkState$5 = async (client, input) => {
1807
1807
  }
1808
1808
  catch (exception) {
1809
1809
  reason = exception;
1810
- if (exception.name && exception.name == "ValidationError") {
1810
+ if (exception.name === "ValidationError") {
1811
1811
  return { state: utilWaiter.WaiterState.FAILURE, reason };
1812
1812
  }
1813
1813
  }
@@ -1849,7 +1849,7 @@ const checkState$4 = async (client, input) => {
1849
1849
  }
1850
1850
  catch (exception) {
1851
1851
  reason = exception;
1852
- if (exception.name && exception.name == "ValidationError") {
1852
+ if (exception.name === "ValidationError") {
1853
1853
  return { state: utilWaiter.WaiterState.FAILURE, reason };
1854
1854
  }
1855
1855
  }
@@ -1900,7 +1900,7 @@ const checkState$3 = async (client, input) => {
1900
1900
  }
1901
1901
  catch (exception) {
1902
1902
  reason = exception;
1903
- if (exception.name && exception.name == "ValidationError") {
1903
+ if (exception.name === "ValidationError") {
1904
1904
  return { state: utilWaiter.WaiterState.FAILURE, reason };
1905
1905
  }
1906
1906
  }
@@ -1986,7 +1986,7 @@ const checkState$2 = async (client, input) => {
1986
1986
  }
1987
1987
  catch (exception) {
1988
1988
  reason = exception;
1989
- if (exception.name && exception.name == "ValidationError") {
1989
+ if (exception.name === "ValidationError") {
1990
1990
  return { state: utilWaiter.WaiterState.FAILURE, reason };
1991
1991
  }
1992
1992
  }
@@ -2072,7 +2072,7 @@ const checkState$1 = async (client, input) => {
2072
2072
  }
2073
2073
  catch (exception) {
2074
2074
  reason = exception;
2075
- if (exception.name && exception.name == "ValidationError") {
2075
+ if (exception.name === "ValidationError") {
2076
2076
  return { state: utilWaiter.WaiterState.FAILURE, reason };
2077
2077
  }
2078
2078
  }
@@ -1,5 +1,5 @@
1
1
  import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
- import { DescribeChangeSetCommand } from "../commands/DescribeChangeSetCommand";
2
+ import { DescribeChangeSetCommand, } from "../commands/DescribeChangeSetCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
5
5
  try {
@@ -26,7 +26,7 @@ const checkState = async (client, input) => {
26
26
  }
27
27
  catch (exception) {
28
28
  reason = exception;
29
- if (exception.name && exception.name == "ValidationError") {
29
+ if (exception.name === "ValidationError") {
30
30
  return { state: WaiterState.FAILURE, reason };
31
31
  }
32
32
  }
@@ -1,5 +1,5 @@
1
1
  import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
- import { DescribeStacksCommand } from "../commands/DescribeStacksCommand";
2
+ import { DescribeStacksCommand, } from "../commands/DescribeStacksCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
5
5
  try {
@@ -236,7 +236,7 @@ const checkState = async (client, input) => {
236
236
  }
237
237
  catch (exception) {
238
238
  reason = exception;
239
- if (exception.name && exception.name == "ValidationError") {
239
+ if (exception.name === "ValidationError") {
240
240
  return { state: WaiterState.FAILURE, reason };
241
241
  }
242
242
  }
@@ -1,5 +1,5 @@
1
1
  import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
- import { DescribeStacksCommand } from "../commands/DescribeStacksCommand";
2
+ import { DescribeStacksCommand, } from "../commands/DescribeStacksCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
5
5
  try {
@@ -130,7 +130,7 @@ const checkState = async (client, input) => {
130
130
  }
131
131
  catch (exception) {
132
132
  reason = exception;
133
- if (exception.name && exception.name == "ValidationError") {
133
+ if (exception.name === "ValidationError") {
134
134
  return { state: WaiterState.SUCCESS, reason };
135
135
  }
136
136
  }
@@ -1,5 +1,5 @@
1
1
  import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
- import { DescribeStacksCommand } from "../commands/DescribeStacksCommand";
2
+ import { DescribeStacksCommand, } from "../commands/DescribeStacksCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
5
5
  try {
@@ -9,7 +9,7 @@ const checkState = async (client, input) => {
9
9
  }
10
10
  catch (exception) {
11
11
  reason = exception;
12
- if (exception.name && exception.name == "ValidationError") {
12
+ if (exception.name === "ValidationError") {
13
13
  return { state: WaiterState.RETRY, reason };
14
14
  }
15
15
  }
@@ -1,5 +1,5 @@
1
1
  import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
- import { DescribeStacksCommand } from "../commands/DescribeStacksCommand";
2
+ import { DescribeStacksCommand, } from "../commands/DescribeStacksCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
5
5
  try {
@@ -100,7 +100,7 @@ const checkState = async (client, input) => {
100
100
  }
101
101
  catch (exception) {
102
102
  reason = exception;
103
- if (exception.name && exception.name == "ValidationError") {
103
+ if (exception.name === "ValidationError") {
104
104
  return { state: WaiterState.FAILURE, reason };
105
105
  }
106
106
  }
@@ -26,7 +26,7 @@ const checkState = async (client, input) => {
26
26
  }
27
27
  catch (exception) {
28
28
  reason = exception;
29
- if (exception.name && exception.name == "ValidationError") {
29
+ if (exception.name === "ValidationError") {
30
30
  return { state: WaiterState.FAILURE, reason };
31
31
  }
32
32
  }
@@ -35,7 +35,7 @@ const checkState = async (client, input) => {
35
35
  }
36
36
  catch (exception) {
37
37
  reason = exception;
38
- if (exception.name && exception.name == "ValidationError") {
38
+ if (exception.name === "ValidationError") {
39
39
  return { state: WaiterState.FAILURE, reason };
40
40
  }
41
41
  }
@@ -1,5 +1,5 @@
1
1
  import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
- import { DescribeStacksCommand } from "../commands/DescribeStacksCommand";
2
+ import { DescribeStacksCommand, } from "../commands/DescribeStacksCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
5
5
  try {
@@ -70,7 +70,7 @@ const checkState = async (client, input) => {
70
70
  }
71
71
  catch (exception) {
72
72
  reason = exception;
73
- if (exception.name && exception.name == "ValidationError") {
73
+ if (exception.name === "ValidationError") {
74
74
  return { state: WaiterState.FAILURE, reason };
75
75
  }
76
76
  }
@@ -1,5 +1,5 @@
1
1
  import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
- import { DescribeStacksCommand } from "../commands/DescribeStacksCommand";
2
+ import { DescribeStacksCommand, } from "../commands/DescribeStacksCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
5
5
  try {
@@ -70,7 +70,7 @@ const checkState = async (client, input) => {
70
70
  }
71
71
  catch (exception) {
72
72
  reason = exception;
73
- if (exception.name && exception.name == "ValidationError") {
73
+ if (exception.name === "ValidationError") {
74
74
  return { state: WaiterState.FAILURE, reason };
75
75
  }
76
76
  }
@@ -91,6 +91,7 @@ import { type UpdateStackInstancesCommandInput, type UpdateStackInstancesCommand
91
91
  import { type UpdateStackSetCommandInput, type UpdateStackSetCommandOutput } from "./commands/UpdateStackSetCommand";
92
92
  import { type UpdateTerminationProtectionCommandInput, type UpdateTerminationProtectionCommandOutput } from "./commands/UpdateTerminationProtectionCommand";
93
93
  import { type ValidateTemplateCommandInput, type ValidateTemplateCommandOutput } from "./commands/ValidateTemplateCommand";
94
+ import type { CloudFormationServiceException } from "./models/CloudFormationServiceException";
94
95
  export interface CloudFormation {
95
96
  /**
96
97
  * @see {@link ActivateOrganizationsAccessCommand}
@@ -837,61 +838,61 @@ export interface CloudFormation {
837
838
  * @param args - command input.
838
839
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
839
840
  */
840
- waitUntilChangeSetCreateComplete(args: DescribeChangeSetCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult>;
841
+ waitUntilChangeSetCreateComplete(args: DescribeChangeSetCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult<DescribeChangeSetCommandOutput>>;
841
842
  /**
842
843
  * @see {@link DescribeStackRefactorCommand}
843
844
  * @param args - command input.
844
845
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
845
846
  */
846
- waitUntilStackRefactorCreateComplete(args: DescribeStackRefactorCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult>;
847
+ waitUntilStackRefactorCreateComplete(args: DescribeStackRefactorCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult<DescribeStackRefactorCommandOutput>>;
847
848
  /**
848
849
  * @see {@link DescribeStackRefactorCommand}
849
850
  * @param args - command input.
850
851
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
851
852
  */
852
- waitUntilStackRefactorExecuteComplete(args: DescribeStackRefactorCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult>;
853
+ waitUntilStackRefactorExecuteComplete(args: DescribeStackRefactorCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult<DescribeStackRefactorCommandOutput>>;
853
854
  /**
854
855
  * @see {@link DescribeStacksCommand}
855
856
  * @param args - command input.
856
857
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
857
858
  */
858
- waitUntilStackCreateComplete(args: DescribeStacksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult>;
859
+ waitUntilStackCreateComplete(args: DescribeStacksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult<DescribeStacksCommandOutput>>;
859
860
  /**
860
861
  * @see {@link DescribeStacksCommand}
861
862
  * @param args - command input.
862
863
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
863
864
  */
864
- waitUntilStackDeleteComplete(args: DescribeStacksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult>;
865
+ waitUntilStackDeleteComplete(args: DescribeStacksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult<DescribeStacksCommandOutput | CloudFormationServiceException>>;
865
866
  /**
866
867
  * @see {@link DescribeStacksCommand}
867
868
  * @param args - command input.
868
869
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
869
870
  */
870
- waitUntilStackExists(args: DescribeStacksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult>;
871
+ waitUntilStackExists(args: DescribeStacksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult<DescribeStacksCommandOutput>>;
871
872
  /**
872
873
  * @see {@link DescribeStacksCommand}
873
874
  * @param args - command input.
874
875
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
875
876
  */
876
- waitUntilStackImportComplete(args: DescribeStacksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult>;
877
+ waitUntilStackImportComplete(args: DescribeStacksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult<DescribeStacksCommandOutput>>;
877
878
  /**
878
879
  * @see {@link DescribeStacksCommand}
879
880
  * @param args - command input.
880
881
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
881
882
  */
882
- waitUntilStackRollbackComplete(args: DescribeStacksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult>;
883
+ waitUntilStackRollbackComplete(args: DescribeStacksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult<DescribeStacksCommandOutput>>;
883
884
  /**
884
885
  * @see {@link DescribeStacksCommand}
885
886
  * @param args - command input.
886
887
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
887
888
  */
888
- waitUntilStackUpdateComplete(args: DescribeStacksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult>;
889
+ waitUntilStackUpdateComplete(args: DescribeStacksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult<DescribeStacksCommandOutput>>;
889
890
  /**
890
891
  * @see {@link DescribeTypeRegistrationCommand}
891
892
  * @param args - command input.
892
893
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
893
894
  */
894
- waitUntilTypeRegistrationComplete(args: DescribeTypeRegistrationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult>;
895
+ waitUntilTypeRegistrationComplete(args: DescribeTypeRegistrationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult<DescribeTypeRegistrationCommandOutput>>;
895
896
  }
896
897
  /**
897
898
  * <fullname>CloudFormation</fullname>
@@ -366,6 +366,7 @@ import {
366
366
  ValidateTemplateCommandInput,
367
367
  ValidateTemplateCommandOutput,
368
368
  } from "./commands/ValidateTemplateCommand";
369
+ import { CloudFormationServiceException } from "./models/CloudFormationServiceException";
369
370
  export interface CloudFormation {
370
371
  activateOrganizationsAccess(): Promise<ActivateOrganizationsAccessCommandOutput>;
371
372
  activateOrganizationsAccess(
@@ -1757,7 +1758,7 @@ export interface CloudFormation {
1757
1758
  WaiterConfiguration<CloudFormation>,
1758
1759
  Exclude<keyof WaiterConfiguration<CloudFormation>, "client">
1759
1760
  >
1760
- ): Promise<WaiterResult>;
1761
+ ): Promise<WaiterResult<DescribeChangeSetCommandOutput>>;
1761
1762
  waitUntilStackRefactorCreateComplete(
1762
1763
  args: DescribeStackRefactorCommandInput,
1763
1764
  waiterConfig:
@@ -1766,7 +1767,7 @@ export interface CloudFormation {
1766
1767
  WaiterConfiguration<CloudFormation>,
1767
1768
  Exclude<keyof WaiterConfiguration<CloudFormation>, "client">
1768
1769
  >
1769
- ): Promise<WaiterResult>;
1770
+ ): Promise<WaiterResult<DescribeStackRefactorCommandOutput>>;
1770
1771
  waitUntilStackRefactorExecuteComplete(
1771
1772
  args: DescribeStackRefactorCommandInput,
1772
1773
  waiterConfig:
@@ -1775,7 +1776,7 @@ export interface CloudFormation {
1775
1776
  WaiterConfiguration<CloudFormation>,
1776
1777
  Exclude<keyof WaiterConfiguration<CloudFormation>, "client">
1777
1778
  >
1778
- ): Promise<WaiterResult>;
1779
+ ): Promise<WaiterResult<DescribeStackRefactorCommandOutput>>;
1779
1780
  waitUntilStackCreateComplete(
1780
1781
  args: DescribeStacksCommandInput,
1781
1782
  waiterConfig:
@@ -1784,7 +1785,7 @@ export interface CloudFormation {
1784
1785
  WaiterConfiguration<CloudFormation>,
1785
1786
  Exclude<keyof WaiterConfiguration<CloudFormation>, "client">
1786
1787
  >
1787
- ): Promise<WaiterResult>;
1788
+ ): Promise<WaiterResult<DescribeStacksCommandOutput>>;
1788
1789
  waitUntilStackDeleteComplete(
1789
1790
  args: DescribeStacksCommandInput,
1790
1791
  waiterConfig:
@@ -1793,7 +1794,9 @@ export interface CloudFormation {
1793
1794
  WaiterConfiguration<CloudFormation>,
1794
1795
  Exclude<keyof WaiterConfiguration<CloudFormation>, "client">
1795
1796
  >
1796
- ): Promise<WaiterResult>;
1797
+ ): Promise<
1798
+ WaiterResult<DescribeStacksCommandOutput | CloudFormationServiceException>
1799
+ >;
1797
1800
  waitUntilStackExists(
1798
1801
  args: DescribeStacksCommandInput,
1799
1802
  waiterConfig:
@@ -1802,7 +1805,7 @@ export interface CloudFormation {
1802
1805
  WaiterConfiguration<CloudFormation>,
1803
1806
  Exclude<keyof WaiterConfiguration<CloudFormation>, "client">
1804
1807
  >
1805
- ): Promise<WaiterResult>;
1808
+ ): Promise<WaiterResult<DescribeStacksCommandOutput>>;
1806
1809
  waitUntilStackImportComplete(
1807
1810
  args: DescribeStacksCommandInput,
1808
1811
  waiterConfig:
@@ -1811,7 +1814,7 @@ export interface CloudFormation {
1811
1814
  WaiterConfiguration<CloudFormation>,
1812
1815
  Exclude<keyof WaiterConfiguration<CloudFormation>, "client">
1813
1816
  >
1814
- ): Promise<WaiterResult>;
1817
+ ): Promise<WaiterResult<DescribeStacksCommandOutput>>;
1815
1818
  waitUntilStackRollbackComplete(
1816
1819
  args: DescribeStacksCommandInput,
1817
1820
  waiterConfig:
@@ -1820,7 +1823,7 @@ export interface CloudFormation {
1820
1823
  WaiterConfiguration<CloudFormation>,
1821
1824
  Exclude<keyof WaiterConfiguration<CloudFormation>, "client">
1822
1825
  >
1823
- ): Promise<WaiterResult>;
1826
+ ): Promise<WaiterResult<DescribeStacksCommandOutput>>;
1824
1827
  waitUntilStackUpdateComplete(
1825
1828
  args: DescribeStacksCommandInput,
1826
1829
  waiterConfig:
@@ -1829,7 +1832,7 @@ export interface CloudFormation {
1829
1832
  WaiterConfiguration<CloudFormation>,
1830
1833
  Exclude<keyof WaiterConfiguration<CloudFormation>, "client">
1831
1834
  >
1832
- ): Promise<WaiterResult>;
1835
+ ): Promise<WaiterResult<DescribeStacksCommandOutput>>;
1833
1836
  waitUntilTypeRegistrationComplete(
1834
1837
  args: DescribeTypeRegistrationCommandInput,
1835
1838
  waiterConfig:
@@ -1838,7 +1841,7 @@ export interface CloudFormation {
1838
1841
  WaiterConfiguration<CloudFormation>,
1839
1842
  Exclude<keyof WaiterConfiguration<CloudFormation>, "client">
1840
1843
  >
1841
- ): Promise<WaiterResult>;
1844
+ ): Promise<WaiterResult<DescribeTypeRegistrationCommandOutput>>;
1842
1845
  }
1843
1846
  export declare class CloudFormation
1844
1847
  extends CloudFormationClient
@@ -1,11 +1,17 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
2
  import { CloudFormationClient } from "../CloudFormationClient";
3
- import { DescribeChangeSetCommandInput } from "../commands/DescribeChangeSetCommand";
3
+ import {
4
+ DescribeChangeSetCommandInput,
5
+ DescribeChangeSetCommandOutput,
6
+ } from "../commands/DescribeChangeSetCommand";
7
+ import { CloudFormationServiceException } from "../models/CloudFormationServiceException";
4
8
  export declare const waitForChangeSetCreateComplete: (
5
9
  params: WaiterConfiguration<CloudFormationClient>,
6
10
  input: DescribeChangeSetCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<
12
+ WaiterResult<DescribeChangeSetCommandOutput | CloudFormationServiceException>
13
+ >;
8
14
  export declare const waitUntilChangeSetCreateComplete: (
9
15
  params: WaiterConfiguration<CloudFormationClient>,
10
16
  input: DescribeChangeSetCommandInput
11
- ) => Promise<WaiterResult>;
17
+ ) => Promise<WaiterResult<DescribeChangeSetCommandOutput>>;
@@ -1,11 +1,17 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
2
  import { CloudFormationClient } from "../CloudFormationClient";
3
- import { DescribeStacksCommandInput } from "../commands/DescribeStacksCommand";
3
+ import {
4
+ DescribeStacksCommandInput,
5
+ DescribeStacksCommandOutput,
6
+ } from "../commands/DescribeStacksCommand";
7
+ import { CloudFormationServiceException } from "../models/CloudFormationServiceException";
4
8
  export declare const waitForStackCreateComplete: (
5
9
  params: WaiterConfiguration<CloudFormationClient>,
6
10
  input: DescribeStacksCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<
12
+ WaiterResult<DescribeStacksCommandOutput | CloudFormationServiceException>
13
+ >;
8
14
  export declare const waitUntilStackCreateComplete: (
9
15
  params: WaiterConfiguration<CloudFormationClient>,
10
16
  input: DescribeStacksCommandInput
11
- ) => Promise<WaiterResult>;
17
+ ) => Promise<WaiterResult<DescribeStacksCommandOutput>>;
@@ -1,11 +1,19 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
2
  import { CloudFormationClient } from "../CloudFormationClient";
3
- import { DescribeStacksCommandInput } from "../commands/DescribeStacksCommand";
3
+ import {
4
+ DescribeStacksCommandInput,
5
+ DescribeStacksCommandOutput,
6
+ } from "../commands/DescribeStacksCommand";
7
+ import { CloudFormationServiceException } from "../models/CloudFormationServiceException";
4
8
  export declare const waitForStackDeleteComplete: (
5
9
  params: WaiterConfiguration<CloudFormationClient>,
6
10
  input: DescribeStacksCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<
12
+ WaiterResult<DescribeStacksCommandOutput | CloudFormationServiceException>
13
+ >;
8
14
  export declare const waitUntilStackDeleteComplete: (
9
15
  params: WaiterConfiguration<CloudFormationClient>,
10
16
  input: DescribeStacksCommandInput
11
- ) => Promise<WaiterResult>;
17
+ ) => Promise<
18
+ WaiterResult<DescribeStacksCommandOutput | CloudFormationServiceException>
19
+ >;
@@ -1,11 +1,17 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
2
  import { CloudFormationClient } from "../CloudFormationClient";
3
- import { DescribeStacksCommandInput } from "../commands/DescribeStacksCommand";
3
+ import {
4
+ DescribeStacksCommandInput,
5
+ DescribeStacksCommandOutput,
6
+ } from "../commands/DescribeStacksCommand";
7
+ import { CloudFormationServiceException } from "../models/CloudFormationServiceException";
4
8
  export declare const waitForStackExists: (
5
9
  params: WaiterConfiguration<CloudFormationClient>,
6
10
  input: DescribeStacksCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<
12
+ WaiterResult<DescribeStacksCommandOutput | CloudFormationServiceException>
13
+ >;
8
14
  export declare const waitUntilStackExists: (
9
15
  params: WaiterConfiguration<CloudFormationClient>,
10
16
  input: DescribeStacksCommandInput
11
- ) => Promise<WaiterResult>;
17
+ ) => Promise<WaiterResult<DescribeStacksCommandOutput>>;
@@ -1,11 +1,17 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
2
  import { CloudFormationClient } from "../CloudFormationClient";
3
- import { DescribeStacksCommandInput } from "../commands/DescribeStacksCommand";
3
+ import {
4
+ DescribeStacksCommandInput,
5
+ DescribeStacksCommandOutput,
6
+ } from "../commands/DescribeStacksCommand";
7
+ import { CloudFormationServiceException } from "../models/CloudFormationServiceException";
4
8
  export declare const waitForStackImportComplete: (
5
9
  params: WaiterConfiguration<CloudFormationClient>,
6
10
  input: DescribeStacksCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<
12
+ WaiterResult<DescribeStacksCommandOutput | CloudFormationServiceException>
13
+ >;
8
14
  export declare const waitUntilStackImportComplete: (
9
15
  params: WaiterConfiguration<CloudFormationClient>,
10
16
  input: DescribeStacksCommandInput
11
- ) => Promise<WaiterResult>;
17
+ ) => Promise<WaiterResult<DescribeStacksCommandOutput>>;
@@ -1,11 +1,19 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
2
  import { CloudFormationClient } from "../CloudFormationClient";
3
- import { DescribeStackRefactorCommandInput } from "../commands/DescribeStackRefactorCommand";
3
+ import {
4
+ DescribeStackRefactorCommandInput,
5
+ DescribeStackRefactorCommandOutput,
6
+ } from "../commands/DescribeStackRefactorCommand";
7
+ import { CloudFormationServiceException } from "../models/CloudFormationServiceException";
4
8
  export declare const waitForStackRefactorCreateComplete: (
5
9
  params: WaiterConfiguration<CloudFormationClient>,
6
10
  input: DescribeStackRefactorCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<
12
+ WaiterResult<
13
+ DescribeStackRefactorCommandOutput | CloudFormationServiceException
14
+ >
15
+ >;
8
16
  export declare const waitUntilStackRefactorCreateComplete: (
9
17
  params: WaiterConfiguration<CloudFormationClient>,
10
18
  input: DescribeStackRefactorCommandInput
11
- ) => Promise<WaiterResult>;
19
+ ) => Promise<WaiterResult<DescribeStackRefactorCommandOutput>>;
@@ -1,11 +1,19 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
2
  import { CloudFormationClient } from "../CloudFormationClient";
3
- import { DescribeStackRefactorCommandInput } from "../commands/DescribeStackRefactorCommand";
3
+ import {
4
+ DescribeStackRefactorCommandInput,
5
+ DescribeStackRefactorCommandOutput,
6
+ } from "../commands/DescribeStackRefactorCommand";
7
+ import { CloudFormationServiceException } from "../models/CloudFormationServiceException";
4
8
  export declare const waitForStackRefactorExecuteComplete: (
5
9
  params: WaiterConfiguration<CloudFormationClient>,
6
10
  input: DescribeStackRefactorCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<
12
+ WaiterResult<
13
+ DescribeStackRefactorCommandOutput | CloudFormationServiceException
14
+ >
15
+ >;
8
16
  export declare const waitUntilStackRefactorExecuteComplete: (
9
17
  params: WaiterConfiguration<CloudFormationClient>,
10
18
  input: DescribeStackRefactorCommandInput
11
- ) => Promise<WaiterResult>;
19
+ ) => Promise<WaiterResult<DescribeStackRefactorCommandOutput>>;