@@ -44,6 +44,11 @@ import {
44
44
CreateStackInstancesCommandInput ,
45
45
CreateStackInstancesCommandOutput ,
46
46
} from "./commands/CreateStackInstancesCommand" ;
47
+ import {
48
+ CreateStackRefactorCommand ,
49
+ CreateStackRefactorCommandInput ,
50
+ CreateStackRefactorCommandOutput ,
51
+ } from "./commands/CreateStackRefactorCommand" ;
47
52
import {
48
53
CreateStackSetCommand ,
49
54
CreateStackSetCommandInput ,
@@ -135,6 +140,11 @@ import {
135
140
DescribeStackInstanceCommandInput ,
136
141
DescribeStackInstanceCommandOutput ,
137
142
} from "./commands/DescribeStackInstanceCommand" ;
143
+ import {
144
+ DescribeStackRefactorCommand ,
145
+ DescribeStackRefactorCommandInput ,
146
+ DescribeStackRefactorCommandOutput ,
147
+ } from "./commands/DescribeStackRefactorCommand" ;
138
148
import {
139
149
DescribeStackResourceCommand ,
140
150
DescribeStackResourceCommandInput ,
@@ -200,6 +210,11 @@ import {
200
210
ExecuteChangeSetCommandInput ,
201
211
ExecuteChangeSetCommandOutput ,
202
212
} from "./commands/ExecuteChangeSetCommand" ;
213
+ import {
214
+ ExecuteStackRefactorCommand ,
215
+ ExecuteStackRefactorCommandInput ,
216
+ ExecuteStackRefactorCommandOutput ,
217
+ } from "./commands/ExecuteStackRefactorCommand" ;
203
218
import {
204
219
GetGeneratedTemplateCommand ,
205
220
GetGeneratedTemplateCommandInput ,
@@ -263,6 +278,16 @@ import {
263
278
ListStackInstancesCommandInput ,
264
279
ListStackInstancesCommandOutput ,
265
280
} from "./commands/ListStackInstancesCommand" ;
281
+ import {
282
+ ListStackRefactorActionsCommand ,
283
+ ListStackRefactorActionsCommandInput ,
284
+ ListStackRefactorActionsCommandOutput ,
285
+ } from "./commands/ListStackRefactorActionsCommand" ;
286
+ import {
287
+ ListStackRefactorsCommand ,
288
+ ListStackRefactorsCommandInput ,
289
+ ListStackRefactorsCommandOutput ,
290
+ } from "./commands/ListStackRefactorsCommand" ;
266
291
import {
267
292
ListStackResourcesCommand ,
268
293
ListStackResourcesCommandInput ,
@@ -389,6 +414,7 @@ const commands = {
389
414
CreateGeneratedTemplateCommand,
390
415
CreateStackCommand,
391
416
CreateStackInstancesCommand,
417
+ CreateStackRefactorCommand,
392
418
CreateStackSetCommand,
393
419
DeactivateOrganizationsAccessCommand,
394
420
DeactivateTypeCommand,
@@ -408,6 +434,7 @@ const commands = {
408
434
DescribeStackDriftDetectionStatusCommand,
409
435
DescribeStackEventsCommand,
410
436
DescribeStackInstanceCommand,
437
+ DescribeStackRefactorCommand,
411
438
DescribeStackResourceCommand,
412
439
DescribeStackResourceDriftsCommand,
413
440
DescribeStackResourcesCommand,
@@ -421,6 +448,7 @@ const commands = {
421
448
DetectStackSetDriftCommand,
422
449
EstimateTemplateCostCommand,
423
450
ExecuteChangeSetCommand,
451
+ ExecuteStackRefactorCommand,
424
452
GetGeneratedTemplateCommand,
425
453
GetStackPolicyCommand,
426
454
GetTemplateCommand,
@@ -436,6 +464,8 @@ const commands = {
436
464
ListResourceScansCommand,
437
465
ListStackInstanceResourceDriftsCommand,
438
466
ListStackInstancesCommand,
467
+ ListStackRefactorActionsCommand,
468
+ ListStackRefactorsCommand,
439
469
ListStackResourcesCommand,
440
470
ListStacksCommand,
441
471
ListStackSetAutoDeploymentTargetsCommand,
@@ -606,6 +636,23 @@ export interface CloudFormation {
606
636
cb : ( err : any , data ?: CreateStackInstancesCommandOutput ) => void
607
637
) : void ;
608
638
639
+ /**
640
+ * @see {@link CreateStackRefactorCommand }
641
+ */
642
+ createStackRefactor (
643
+ args : CreateStackRefactorCommandInput ,
644
+ options ?: __HttpHandlerOptions
645
+ ) : Promise < CreateStackRefactorCommandOutput > ;
646
+ createStackRefactor (
647
+ args : CreateStackRefactorCommandInput ,
648
+ cb : ( err : any , data ?: CreateStackRefactorCommandOutput ) => void
649
+ ) : void ;
650
+ createStackRefactor (
651
+ args : CreateStackRefactorCommandInput ,
652
+ options : __HttpHandlerOptions ,
653
+ cb : ( err : any , data ?: CreateStackRefactorCommandOutput ) => void
654
+ ) : void ;
655
+
609
656
/**
610
657
* @see {@link CreateStackSetCommand }
611
658
*/
@@ -915,6 +962,23 @@ export interface CloudFormation {
915
962
cb : ( err : any , data ?: DescribeStackInstanceCommandOutput ) => void
916
963
) : void ;
917
964
965
+ /**
966
+ * @see {@link DescribeStackRefactorCommand }
967
+ */
968
+ describeStackRefactor (
969
+ args : DescribeStackRefactorCommandInput ,
970
+ options ?: __HttpHandlerOptions
971
+ ) : Promise < DescribeStackRefactorCommandOutput > ;
972
+ describeStackRefactor (
973
+ args : DescribeStackRefactorCommandInput ,
974
+ cb : ( err : any , data ?: DescribeStackRefactorCommandOutput ) => void
975
+ ) : void ;
976
+ describeStackRefactor (
977
+ args : DescribeStackRefactorCommandInput ,
978
+ options : __HttpHandlerOptions ,
979
+ cb : ( err : any , data ?: DescribeStackRefactorCommandOutput ) => void
980
+ ) : void ;
981
+
918
982
/**
919
983
* @see {@link DescribeStackResourceCommand }
920
984
*/
@@ -1131,6 +1195,23 @@ export interface CloudFormation {
1131
1195
cb : ( err : any , data ?: ExecuteChangeSetCommandOutput ) => void
1132
1196
) : void ;
1133
1197
1198
+ /**
1199
+ * @see {@link ExecuteStackRefactorCommand }
1200
+ */
1201
+ executeStackRefactor (
1202
+ args : ExecuteStackRefactorCommandInput ,
1203
+ options ?: __HttpHandlerOptions
1204
+ ) : Promise < ExecuteStackRefactorCommandOutput > ;
1205
+ executeStackRefactor (
1206
+ args : ExecuteStackRefactorCommandInput ,
1207
+ cb : ( err : any , data ?: ExecuteStackRefactorCommandOutput ) => void
1208
+ ) : void ;
1209
+ executeStackRefactor (
1210
+ args : ExecuteStackRefactorCommandInput ,
1211
+ options : __HttpHandlerOptions ,
1212
+ cb : ( err : any , data ?: ExecuteStackRefactorCommandOutput ) => void
1213
+ ) : void ;
1214
+
1134
1215
/**
1135
1216
* @see {@link GetGeneratedTemplateCommand }
1136
1217
*/
@@ -1364,6 +1445,41 @@ export interface CloudFormation {
1364
1445
cb : ( err : any , data ?: ListStackInstancesCommandOutput ) => void
1365
1446
) : void ;
1366
1447
1448
+ /**
1449
+ * @see {@link ListStackRefactorActionsCommand }
1450
+ */
1451
+ listStackRefactorActions (
1452
+ args : ListStackRefactorActionsCommandInput ,
1453
+ options ?: __HttpHandlerOptions
1454
+ ) : Promise < ListStackRefactorActionsCommandOutput > ;
1455
+ listStackRefactorActions (
1456
+ args : ListStackRefactorActionsCommandInput ,
1457
+ cb : ( err : any , data ?: ListStackRefactorActionsCommandOutput ) => void
1458
+ ) : void ;
1459
+ listStackRefactorActions (
1460
+ args : ListStackRefactorActionsCommandInput ,
1461
+ options : __HttpHandlerOptions ,
1462
+ cb : ( err : any , data ?: ListStackRefactorActionsCommandOutput ) => void
1463
+ ) : void ;
1464
+
1465
+ /**
1466
+ * @see {@link ListStackRefactorsCommand }
1467
+ */
1468
+ listStackRefactors ( ) : Promise < ListStackRefactorsCommandOutput > ;
1469
+ listStackRefactors (
1470
+ args : ListStackRefactorsCommandInput ,
1471
+ options ?: __HttpHandlerOptions
1472
+ ) : Promise < ListStackRefactorsCommandOutput > ;
1473
+ listStackRefactors (
1474
+ args : ListStackRefactorsCommandInput ,
1475
+ cb : ( err : any , data ?: ListStackRefactorsCommandOutput ) => void
1476
+ ) : void ;
1477
+ listStackRefactors (
1478
+ args : ListStackRefactorsCommandInput ,
1479
+ options : __HttpHandlerOptions ,
1480
+ cb : ( err : any , data ?: ListStackRefactorsCommandOutput ) => void
1481
+ ) : void ;
1482
+
1367
1483
/**
1368
1484
* @see {@link ListStackResourcesCommand }
1369
1485
*/
0 commit comments