@aws-sdk/client-cloudformation 3.503.0 → 3.504.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/README.md +88 -0
  2. package/dist-cjs/commands/CreateGeneratedTemplateCommand.js +1 -0
  3. package/dist-cjs/commands/DeleteGeneratedTemplateCommand.js +1 -0
  4. package/dist-cjs/commands/DescribeGeneratedTemplateCommand.js +1 -0
  5. package/dist-cjs/commands/DescribeResourceScanCommand.js +1 -0
  6. package/dist-cjs/commands/GetGeneratedTemplateCommand.js +1 -0
  7. package/dist-cjs/commands/ListGeneratedTemplatesCommand.js +1 -0
  8. package/dist-cjs/commands/ListResourceScanRelatedResourcesCommand.js +1 -0
  9. package/dist-cjs/commands/ListResourceScanResourcesCommand.js +1 -0
  10. package/dist-cjs/commands/ListResourceScansCommand.js +1 -0
  11. package/dist-cjs/commands/StartResourceScanCommand.js +1 -0
  12. package/dist-cjs/commands/UpdateGeneratedTemplateCommand.js +1 -0
  13. package/dist-cjs/index.js +1677 -73
  14. package/dist-cjs/models/models_1.js +1 -0
  15. package/dist-cjs/pagination/ListGeneratedTemplatesPaginator.js +1 -0
  16. package/dist-cjs/pagination/ListResourceScanRelatedResourcesPaginator.js +1 -0
  17. package/dist-cjs/pagination/ListResourceScanResourcesPaginator.js +1 -0
  18. package/dist-cjs/pagination/ListResourceScansPaginator.js +1 -0
  19. package/dist-es/CloudFormation.js +22 -0
  20. package/dist-es/commands/CreateGeneratedTemplateCommand.js +24 -0
  21. package/dist-es/commands/DeleteGeneratedTemplateCommand.js +24 -0
  22. package/dist-es/commands/DescribeGeneratedTemplateCommand.js +24 -0
  23. package/dist-es/commands/DescribeResourceScanCommand.js +24 -0
  24. package/dist-es/commands/GetGeneratedTemplateCommand.js +24 -0
  25. package/dist-es/commands/ListGeneratedTemplatesCommand.js +24 -0
  26. package/dist-es/commands/ListResourceScanRelatedResourcesCommand.js +24 -0
  27. package/dist-es/commands/ListResourceScanResourcesCommand.js +24 -0
  28. package/dist-es/commands/ListResourceScansCommand.js +24 -0
  29. package/dist-es/commands/StartResourceScanCommand.js +24 -0
  30. package/dist-es/commands/UpdateGeneratedTemplateCommand.js +24 -0
  31. package/dist-es/commands/index.js +11 -0
  32. package/dist-es/models/index.js +1 -0
  33. package/dist-es/models/models_0.js +104 -0
  34. package/dist-es/models/models_1.js +1 -0
  35. package/dist-es/pagination/ListGeneratedTemplatesPaginator.js +4 -0
  36. package/dist-es/pagination/ListResourceScanRelatedResourcesPaginator.js +4 -0
  37. package/dist-es/pagination/ListResourceScanResourcesPaginator.js +4 -0
  38. package/dist-es/pagination/ListResourceScansPaginator.js +4 -0
  39. package/dist-es/pagination/index.js +4 -0
  40. package/dist-es/protocols/Aws_query.js +1322 -92
  41. package/dist-types/CloudFormation.d.ts +77 -0
  42. package/dist-types/CloudFormationClient.d.ts +13 -2
  43. package/dist-types/commands/CreateGeneratedTemplateCommand.d.ts +116 -0
  44. package/dist-types/commands/DeleteGeneratedTemplateCommand.d.ts +75 -0
  45. package/dist-types/commands/DescribeGeneratedTemplateCommand.d.ts +135 -0
  46. package/dist-types/commands/DescribeResourceScanCommand.d.ts +168 -0
  47. package/dist-types/commands/GetGeneratedTemplateCommand.d.ts +100 -0
  48. package/dist-types/commands/ListGeneratedTemplatesCommand.d.ts +112 -0
  49. package/dist-types/commands/ListResourceScanRelatedResourcesCommand.d.ts +145 -0
  50. package/dist-types/commands/ListResourceScanResourcesCommand.d.ts +147 -0
  51. package/dist-types/commands/ListResourceScansCommand.d.ts +97 -0
  52. package/dist-types/commands/StartResourceScanCommand.d.ts +91 -0
  53. package/dist-types/commands/StopStackSetOperationCommand.d.ts +1 -1
  54. package/dist-types/commands/TestTypeCommand.d.ts +1 -1
  55. package/dist-types/commands/UpdateGeneratedTemplateCommand.d.ts +156 -0
  56. package/dist-types/commands/UpdateStackCommand.d.ts +1 -1
  57. package/dist-types/commands/UpdateStackInstancesCommand.d.ts +1 -1
  58. package/dist-types/commands/UpdateStackSetCommand.d.ts +1 -1
  59. package/dist-types/commands/UpdateTerminationProtectionCommand.d.ts +1 -1
  60. package/dist-types/commands/ValidateTemplateCommand.d.ts +1 -1
  61. package/dist-types/commands/index.d.ts +11 -0
  62. package/dist-types/models/index.d.ts +1 -0
  63. package/dist-types/models/models_0.d.ts +4075 -3877
  64. package/dist-types/models/models_1.d.ts +974 -0
  65. package/dist-types/pagination/ListGeneratedTemplatesPaginator.d.ts +7 -0
  66. package/dist-types/pagination/ListResourceScanRelatedResourcesPaginator.d.ts +7 -0
  67. package/dist-types/pagination/ListResourceScanResourcesPaginator.d.ts +7 -0
  68. package/dist-types/pagination/ListResourceScansPaginator.d.ts +7 -0
  69. package/dist-types/pagination/index.d.ts +4 -0
  70. package/dist-types/protocols/Aws_query.d.ts +99 -0
  71. package/dist-types/ts3.4/CloudFormation.d.ts +187 -0
  72. package/dist-types/ts3.4/CloudFormationClient.d.ts +66 -0
  73. package/dist-types/ts3.4/commands/CreateGeneratedTemplateCommand.d.ts +30 -0
  74. package/dist-types/ts3.4/commands/DeleteGeneratedTemplateCommand.d.ts +26 -0
  75. package/dist-types/ts3.4/commands/DescribeGeneratedTemplateCommand.d.ts +30 -0
  76. package/dist-types/ts3.4/commands/DescribeResourceScanCommand.d.ts +30 -0
  77. package/dist-types/ts3.4/commands/GetGeneratedTemplateCommand.d.ts +30 -0
  78. package/dist-types/ts3.4/commands/ListGeneratedTemplatesCommand.d.ts +30 -0
  79. package/dist-types/ts3.4/commands/ListResourceScanRelatedResourcesCommand.d.ts +30 -0
  80. package/dist-types/ts3.4/commands/ListResourceScanResourcesCommand.d.ts +30 -0
  81. package/dist-types/ts3.4/commands/ListResourceScansCommand.d.ts +29 -0
  82. package/dist-types/ts3.4/commands/StartResourceScanCommand.d.ts +29 -0
  83. package/dist-types/ts3.4/commands/StopStackSetOperationCommand.d.ts +1 -1
  84. package/dist-types/ts3.4/commands/TestTypeCommand.d.ts +1 -1
  85. package/dist-types/ts3.4/commands/UpdateGeneratedTemplateCommand.d.ts +30 -0
  86. package/dist-types/ts3.4/commands/UpdateStackCommand.d.ts +1 -1
  87. package/dist-types/ts3.4/commands/UpdateStackInstancesCommand.d.ts +1 -1
  88. package/dist-types/ts3.4/commands/UpdateStackSetCommand.d.ts +1 -1
  89. package/dist-types/ts3.4/commands/UpdateTerminationProtectionCommand.d.ts +1 -1
  90. package/dist-types/ts3.4/commands/ValidateTemplateCommand.d.ts +1 -1
  91. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  92. package/dist-types/ts3.4/models/index.d.ts +1 -0
  93. package/dist-types/ts3.4/models/models_0.d.ts +250 -99
  94. package/dist-types/ts3.4/models/models_1.d.ts +132 -0
  95. package/dist-types/ts3.4/pagination/ListGeneratedTemplatesPaginator.d.ts +11 -0
  96. package/dist-types/ts3.4/pagination/ListResourceScanRelatedResourcesPaginator.d.ts +11 -0
  97. package/dist-types/ts3.4/pagination/ListResourceScanResourcesPaginator.d.ts +11 -0
  98. package/dist-types/ts3.4/pagination/ListResourceScansPaginator.d.ts +11 -0
  99. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  100. package/dist-types/ts3.4/protocols/Aws_query.d.ts +132 -0
  101. package/package.json +3 -3
@@ -27,6 +27,10 @@ import {
27
27
  CreateChangeSetCommandInput,
28
28
  CreateChangeSetCommandOutput,
29
29
  } from "../commands/CreateChangeSetCommand";
30
+ import {
31
+ CreateGeneratedTemplateCommandInput,
32
+ CreateGeneratedTemplateCommandOutput,
33
+ } from "../commands/CreateGeneratedTemplateCommand";
30
34
  import {
31
35
  CreateStackCommandInput,
32
36
  CreateStackCommandOutput,
@@ -51,6 +55,10 @@ import {
51
55
  DeleteChangeSetCommandInput,
52
56
  DeleteChangeSetCommandOutput,
53
57
  } from "../commands/DeleteChangeSetCommand";
58
+ import {
59
+ DeleteGeneratedTemplateCommandInput,
60
+ DeleteGeneratedTemplateCommandOutput,
61
+ } from "../commands/DeleteGeneratedTemplateCommand";
54
62
  import {
55
63
  DeleteStackCommandInput,
56
64
  DeleteStackCommandOutput,
@@ -79,6 +87,10 @@ import {
79
87
  DescribeChangeSetHooksCommandInput,
80
88
  DescribeChangeSetHooksCommandOutput,
81
89
  } from "../commands/DescribeChangeSetHooksCommand";
90
+ import {
91
+ DescribeGeneratedTemplateCommandInput,
92
+ DescribeGeneratedTemplateCommandOutput,
93
+ } from "../commands/DescribeGeneratedTemplateCommand";
82
94
  import {
83
95
  DescribeOrganizationsAccessCommandInput,
84
96
  DescribeOrganizationsAccessCommandOutput,
@@ -87,6 +99,10 @@ import {
87
99
  DescribePublisherCommandInput,
88
100
  DescribePublisherCommandOutput,
89
101
  } from "../commands/DescribePublisherCommand";
102
+ import {
103
+ DescribeResourceScanCommandInput,
104
+ DescribeResourceScanCommandOutput,
105
+ } from "../commands/DescribeResourceScanCommand";
90
106
  import {
91
107
  DescribeStackDriftDetectionStatusCommandInput,
92
108
  DescribeStackDriftDetectionStatusCommandOutput,
@@ -151,6 +167,10 @@ import {
151
167
  ExecuteChangeSetCommandInput,
152
168
  ExecuteChangeSetCommandOutput,
153
169
  } from "../commands/ExecuteChangeSetCommand";
170
+ import {
171
+ GetGeneratedTemplateCommandInput,
172
+ GetGeneratedTemplateCommandOutput,
173
+ } from "../commands/GetGeneratedTemplateCommand";
154
174
  import {
155
175
  GetStackPolicyCommandInput,
156
176
  GetStackPolicyCommandOutput,
@@ -175,10 +195,26 @@ import {
175
195
  ListExportsCommandInput,
176
196
  ListExportsCommandOutput,
177
197
  } from "../commands/ListExportsCommand";
198
+ import {
199
+ ListGeneratedTemplatesCommandInput,
200
+ ListGeneratedTemplatesCommandOutput,
201
+ } from "../commands/ListGeneratedTemplatesCommand";
178
202
  import {
179
203
  ListImportsCommandInput,
180
204
  ListImportsCommandOutput,
181
205
  } from "../commands/ListImportsCommand";
206
+ import {
207
+ ListResourceScanRelatedResourcesCommandInput,
208
+ ListResourceScanRelatedResourcesCommandOutput,
209
+ } from "../commands/ListResourceScanRelatedResourcesCommand";
210
+ import {
211
+ ListResourceScanResourcesCommandInput,
212
+ ListResourceScanResourcesCommandOutput,
213
+ } from "../commands/ListResourceScanResourcesCommand";
214
+ import {
215
+ ListResourceScansCommandInput,
216
+ ListResourceScansCommandOutput,
217
+ } from "../commands/ListResourceScansCommand";
182
218
  import {
183
219
  ListStackInstanceResourceDriftsCommandInput,
184
220
  ListStackInstanceResourceDriftsCommandOutput,
@@ -255,6 +291,10 @@ import {
255
291
  SignalResourceCommandInput,
256
292
  SignalResourceCommandOutput,
257
293
  } from "../commands/SignalResourceCommand";
294
+ import {
295
+ StartResourceScanCommandInput,
296
+ StartResourceScanCommandOutput,
297
+ } from "../commands/StartResourceScanCommand";
258
298
  import {
259
299
  StopStackSetOperationCommandInput,
260
300
  StopStackSetOperationCommandOutput,
@@ -263,6 +303,10 @@ import {
263
303
  TestTypeCommandInput,
264
304
  TestTypeCommandOutput,
265
305
  } from "../commands/TestTypeCommand";
306
+ import {
307
+ UpdateGeneratedTemplateCommandInput,
308
+ UpdateGeneratedTemplateCommandOutput,
309
+ } from "../commands/UpdateGeneratedTemplateCommand";
266
310
  import {
267
311
  UpdateStackCommandInput,
268
312
  UpdateStackCommandOutput,
@@ -307,6 +351,10 @@ export declare const se_CreateChangeSetCommand: (
307
351
  input: CreateChangeSetCommandInput,
308
352
  context: __SerdeContext
309
353
  ) => Promise<__HttpRequest>;
354
+ export declare const se_CreateGeneratedTemplateCommand: (
355
+ input: CreateGeneratedTemplateCommandInput,
356
+ context: __SerdeContext
357
+ ) => Promise<__HttpRequest>;
310
358
  export declare const se_CreateStackCommand: (
311
359
  input: CreateStackCommandInput,
312
360
  context: __SerdeContext
@@ -331,6 +379,10 @@ export declare const se_DeleteChangeSetCommand: (
331
379
  input: DeleteChangeSetCommandInput,
332
380
  context: __SerdeContext
333
381
  ) => Promise<__HttpRequest>;
382
+ export declare const se_DeleteGeneratedTemplateCommand: (
383
+ input: DeleteGeneratedTemplateCommandInput,
384
+ context: __SerdeContext
385
+ ) => Promise<__HttpRequest>;
334
386
  export declare const se_DeleteStackCommand: (
335
387
  input: DeleteStackCommandInput,
336
388
  context: __SerdeContext
@@ -359,6 +411,10 @@ export declare const se_DescribeChangeSetHooksCommand: (
359
411
  input: DescribeChangeSetHooksCommandInput,
360
412
  context: __SerdeContext
361
413
  ) => Promise<__HttpRequest>;
414
+ export declare const se_DescribeGeneratedTemplateCommand: (
415
+ input: DescribeGeneratedTemplateCommandInput,
416
+ context: __SerdeContext
417
+ ) => Promise<__HttpRequest>;
362
418
  export declare const se_DescribeOrganizationsAccessCommand: (
363
419
  input: DescribeOrganizationsAccessCommandInput,
364
420
  context: __SerdeContext
@@ -367,6 +423,10 @@ export declare const se_DescribePublisherCommand: (
367
423
  input: DescribePublisherCommandInput,
368
424
  context: __SerdeContext
369
425
  ) => Promise<__HttpRequest>;
426
+ export declare const se_DescribeResourceScanCommand: (
427
+ input: DescribeResourceScanCommandInput,
428
+ context: __SerdeContext
429
+ ) => Promise<__HttpRequest>;
370
430
  export declare const se_DescribeStackDriftDetectionStatusCommand: (
371
431
  input: DescribeStackDriftDetectionStatusCommandInput,
372
432
  context: __SerdeContext
@@ -431,6 +491,10 @@ export declare const se_ExecuteChangeSetCommand: (
431
491
  input: ExecuteChangeSetCommandInput,
432
492
  context: __SerdeContext
433
493
  ) => Promise<__HttpRequest>;
494
+ export declare const se_GetGeneratedTemplateCommand: (
495
+ input: GetGeneratedTemplateCommandInput,
496
+ context: __SerdeContext
497
+ ) => Promise<__HttpRequest>;
434
498
  export declare const se_GetStackPolicyCommand: (
435
499
  input: GetStackPolicyCommandInput,
436
500
  context: __SerdeContext
@@ -455,10 +519,26 @@ export declare const se_ListExportsCommand: (
455
519
  input: ListExportsCommandInput,
456
520
  context: __SerdeContext
457
521
  ) => Promise<__HttpRequest>;
522
+ export declare const se_ListGeneratedTemplatesCommand: (
523
+ input: ListGeneratedTemplatesCommandInput,
524
+ context: __SerdeContext
525
+ ) => Promise<__HttpRequest>;
458
526
  export declare const se_ListImportsCommand: (
459
527
  input: ListImportsCommandInput,
460
528
  context: __SerdeContext
461
529
  ) => Promise<__HttpRequest>;
530
+ export declare const se_ListResourceScanRelatedResourcesCommand: (
531
+ input: ListResourceScanRelatedResourcesCommandInput,
532
+ context: __SerdeContext
533
+ ) => Promise<__HttpRequest>;
534
+ export declare const se_ListResourceScanResourcesCommand: (
535
+ input: ListResourceScanResourcesCommandInput,
536
+ context: __SerdeContext
537
+ ) => Promise<__HttpRequest>;
538
+ export declare const se_ListResourceScansCommand: (
539
+ input: ListResourceScansCommandInput,
540
+ context: __SerdeContext
541
+ ) => Promise<__HttpRequest>;
462
542
  export declare const se_ListStackInstanceResourceDriftsCommand: (
463
543
  input: ListStackInstanceResourceDriftsCommandInput,
464
544
  context: __SerdeContext
@@ -535,6 +615,10 @@ export declare const se_SignalResourceCommand: (
535
615
  input: SignalResourceCommandInput,
536
616
  context: __SerdeContext
537
617
  ) => Promise<__HttpRequest>;
618
+ export declare const se_StartResourceScanCommand: (
619
+ input: StartResourceScanCommandInput,
620
+ context: __SerdeContext
621
+ ) => Promise<__HttpRequest>;
538
622
  export declare const se_StopStackSetOperationCommand: (
539
623
  input: StopStackSetOperationCommandInput,
540
624
  context: __SerdeContext
@@ -543,6 +627,10 @@ export declare const se_TestTypeCommand: (
543
627
  input: TestTypeCommandInput,
544
628
  context: __SerdeContext
545
629
  ) => Promise<__HttpRequest>;
630
+ export declare const se_UpdateGeneratedTemplateCommand: (
631
+ input: UpdateGeneratedTemplateCommandInput,
632
+ context: __SerdeContext
633
+ ) => Promise<__HttpRequest>;
546
634
  export declare const se_UpdateStackCommand: (
547
635
  input: UpdateStackCommandInput,
548
636
  context: __SerdeContext
@@ -587,6 +675,10 @@ export declare const de_CreateChangeSetCommand: (
587
675
  output: __HttpResponse,
588
676
  context: __SerdeContext
589
677
  ) => Promise<CreateChangeSetCommandOutput>;
678
+ export declare const de_CreateGeneratedTemplateCommand: (
679
+ output: __HttpResponse,
680
+ context: __SerdeContext
681
+ ) => Promise<CreateGeneratedTemplateCommandOutput>;
590
682
  export declare const de_CreateStackCommand: (
591
683
  output: __HttpResponse,
592
684
  context: __SerdeContext
@@ -611,6 +703,10 @@ export declare const de_DeleteChangeSetCommand: (
611
703
  output: __HttpResponse,
612
704
  context: __SerdeContext
613
705
  ) => Promise<DeleteChangeSetCommandOutput>;
706
+ export declare const de_DeleteGeneratedTemplateCommand: (
707
+ output: __HttpResponse,
708
+ context: __SerdeContext
709
+ ) => Promise<DeleteGeneratedTemplateCommandOutput>;
614
710
  export declare const de_DeleteStackCommand: (
615
711
  output: __HttpResponse,
616
712
  context: __SerdeContext
@@ -639,6 +735,10 @@ export declare const de_DescribeChangeSetHooksCommand: (
639
735
  output: __HttpResponse,
640
736
  context: __SerdeContext
641
737
  ) => Promise<DescribeChangeSetHooksCommandOutput>;
738
+ export declare const de_DescribeGeneratedTemplateCommand: (
739
+ output: __HttpResponse,
740
+ context: __SerdeContext
741
+ ) => Promise<DescribeGeneratedTemplateCommandOutput>;
642
742
  export declare const de_DescribeOrganizationsAccessCommand: (
643
743
  output: __HttpResponse,
644
744
  context: __SerdeContext
@@ -647,6 +747,10 @@ export declare const de_DescribePublisherCommand: (
647
747
  output: __HttpResponse,
648
748
  context: __SerdeContext
649
749
  ) => Promise<DescribePublisherCommandOutput>;
750
+ export declare const de_DescribeResourceScanCommand: (
751
+ output: __HttpResponse,
752
+ context: __SerdeContext
753
+ ) => Promise<DescribeResourceScanCommandOutput>;
650
754
  export declare const de_DescribeStackDriftDetectionStatusCommand: (
651
755
  output: __HttpResponse,
652
756
  context: __SerdeContext
@@ -711,6 +815,10 @@ export declare const de_ExecuteChangeSetCommand: (
711
815
  output: __HttpResponse,
712
816
  context: __SerdeContext
713
817
  ) => Promise<ExecuteChangeSetCommandOutput>;
818
+ export declare const de_GetGeneratedTemplateCommand: (
819
+ output: __HttpResponse,
820
+ context: __SerdeContext
821
+ ) => Promise<GetGeneratedTemplateCommandOutput>;
714
822
  export declare const de_GetStackPolicyCommand: (
715
823
  output: __HttpResponse,
716
824
  context: __SerdeContext
@@ -735,10 +843,26 @@ export declare const de_ListExportsCommand: (
735
843
  output: __HttpResponse,
736
844
  context: __SerdeContext
737
845
  ) => Promise<ListExportsCommandOutput>;
846
+ export declare const de_ListGeneratedTemplatesCommand: (
847
+ output: __HttpResponse,
848
+ context: __SerdeContext
849
+ ) => Promise<ListGeneratedTemplatesCommandOutput>;
738
850
  export declare const de_ListImportsCommand: (
739
851
  output: __HttpResponse,
740
852
  context: __SerdeContext
741
853
  ) => Promise<ListImportsCommandOutput>;
854
+ export declare const de_ListResourceScanRelatedResourcesCommand: (
855
+ output: __HttpResponse,
856
+ context: __SerdeContext
857
+ ) => Promise<ListResourceScanRelatedResourcesCommandOutput>;
858
+ export declare const de_ListResourceScanResourcesCommand: (
859
+ output: __HttpResponse,
860
+ context: __SerdeContext
861
+ ) => Promise<ListResourceScanResourcesCommandOutput>;
862
+ export declare const de_ListResourceScansCommand: (
863
+ output: __HttpResponse,
864
+ context: __SerdeContext
865
+ ) => Promise<ListResourceScansCommandOutput>;
742
866
  export declare const de_ListStackInstanceResourceDriftsCommand: (
743
867
  output: __HttpResponse,
744
868
  context: __SerdeContext
@@ -815,6 +939,10 @@ export declare const de_SignalResourceCommand: (
815
939
  output: __HttpResponse,
816
940
  context: __SerdeContext
817
941
  ) => Promise<SignalResourceCommandOutput>;
942
+ export declare const de_StartResourceScanCommand: (
943
+ output: __HttpResponse,
944
+ context: __SerdeContext
945
+ ) => Promise<StartResourceScanCommandOutput>;
818
946
  export declare const de_StopStackSetOperationCommand: (
819
947
  output: __HttpResponse,
820
948
  context: __SerdeContext
@@ -823,6 +951,10 @@ export declare const de_TestTypeCommand: (
823
951
  output: __HttpResponse,
824
952
  context: __SerdeContext
825
953
  ) => Promise<TestTypeCommandOutput>;
954
+ export declare const de_UpdateGeneratedTemplateCommand: (
955
+ output: __HttpResponse,
956
+ context: __SerdeContext
957
+ ) => Promise<UpdateGeneratedTemplateCommandOutput>;
826
958
  export declare const de_UpdateStackCommand: (
827
959
  output: __HttpResponse,
828
960
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudformation",
3
3
  "description": "AWS SDK for JavaScript Cloudformation Client for Node.js, Browser and React Native",
4
- "version": "3.503.0",
4
+ "version": "3.504.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-cloudformation",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.502.0",
23
+ "@aws-sdk/client-sts": "3.504.0",
24
24
  "@aws-sdk/core": "3.496.0",
25
- "@aws-sdk/credential-provider-node": "3.503.0",
25
+ "@aws-sdk/credential-provider-node": "3.504.0",
26
26
  "@aws-sdk/middleware-host-header": "3.502.0",
27
27
  "@aws-sdk/middleware-logger": "3.502.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.502.0",