@@ -44,6 +44,11 @@ import {
4444 CreateStackInstancesCommandInput ,
4545 CreateStackInstancesCommandOutput ,
4646} from "./commands/CreateStackInstancesCommand" ;
47+ import {
48+ CreateStackRefactorCommand ,
49+ CreateStackRefactorCommandInput ,
50+ CreateStackRefactorCommandOutput ,
51+ } from "./commands/CreateStackRefactorCommand" ;
4752import {
4853 CreateStackSetCommand ,
4954 CreateStackSetCommandInput ,
@@ -135,6 +140,11 @@ import {
135140 DescribeStackInstanceCommandInput ,
136141 DescribeStackInstanceCommandOutput ,
137142} from "./commands/DescribeStackInstanceCommand" ;
143+ import {
144+ DescribeStackRefactorCommand ,
145+ DescribeStackRefactorCommandInput ,
146+ DescribeStackRefactorCommandOutput ,
147+ } from "./commands/DescribeStackRefactorCommand" ;
138148import {
139149 DescribeStackResourceCommand ,
140150 DescribeStackResourceCommandInput ,
@@ -200,6 +210,11 @@ import {
200210 ExecuteChangeSetCommandInput ,
201211 ExecuteChangeSetCommandOutput ,
202212} from "./commands/ExecuteChangeSetCommand" ;
213+ import {
214+ ExecuteStackRefactorCommand ,
215+ ExecuteStackRefactorCommandInput ,
216+ ExecuteStackRefactorCommandOutput ,
217+ } from "./commands/ExecuteStackRefactorCommand" ;
203218import {
204219 GetGeneratedTemplateCommand ,
205220 GetGeneratedTemplateCommandInput ,
@@ -263,6 +278,16 @@ import {
263278 ListStackInstancesCommandInput ,
264279 ListStackInstancesCommandOutput ,
265280} 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" ;
266291import {
267292 ListStackResourcesCommand ,
268293 ListStackResourcesCommandInput ,
@@ -389,6 +414,7 @@ const commands = {
389414 CreateGeneratedTemplateCommand,
390415 CreateStackCommand,
391416 CreateStackInstancesCommand,
417+ CreateStackRefactorCommand,
392418 CreateStackSetCommand,
393419 DeactivateOrganizationsAccessCommand,
394420 DeactivateTypeCommand,
@@ -408,6 +434,7 @@ const commands = {
408434 DescribeStackDriftDetectionStatusCommand,
409435 DescribeStackEventsCommand,
410436 DescribeStackInstanceCommand,
437+ DescribeStackRefactorCommand,
411438 DescribeStackResourceCommand,
412439 DescribeStackResourceDriftsCommand,
413440 DescribeStackResourcesCommand,
@@ -421,6 +448,7 @@ const commands = {
421448 DetectStackSetDriftCommand,
422449 EstimateTemplateCostCommand,
423450 ExecuteChangeSetCommand,
451+ ExecuteStackRefactorCommand,
424452 GetGeneratedTemplateCommand,
425453 GetStackPolicyCommand,
426454 GetTemplateCommand,
@@ -436,6 +464,8 @@ const commands = {
436464 ListResourceScansCommand,
437465 ListStackInstanceResourceDriftsCommand,
438466 ListStackInstancesCommand,
467+ ListStackRefactorActionsCommand,
468+ ListStackRefactorsCommand,
439469 ListStackResourcesCommand,
440470 ListStacksCommand,
441471 ListStackSetAutoDeploymentTargetsCommand,
@@ -606,6 +636,23 @@ export interface CloudFormation {
606636 cb : ( err : any , data ?: CreateStackInstancesCommandOutput ) => void
607637 ) : void ;
608638
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+
609656 /**
610657 * @see {@link CreateStackSetCommand }
611658 */
@@ -915,6 +962,23 @@ export interface CloudFormation {
915962 cb : ( err : any , data ?: DescribeStackInstanceCommandOutput ) => void
916963 ) : void ;
917964
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+
918982 /**
919983 * @see {@link DescribeStackResourceCommand }
920984 */
@@ -1131,6 +1195,23 @@ export interface CloudFormation {
11311195 cb : ( err : any , data ?: ExecuteChangeSetCommandOutput ) => void
11321196 ) : void ;
11331197
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+
11341215 /**
11351216 * @see {@link GetGeneratedTemplateCommand }
11361217 */
@@ -1364,6 +1445,41 @@ export interface CloudFormation {
13641445 cb : ( err : any , data ?: ListStackInstancesCommandOutput ) => void
13651446 ) : void ;
13661447
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+
13671483 /**
13681484 * @see {@link ListStackResourcesCommand }
13691485 */
0 commit comments