executeStackRefactor method

Future<void> executeStackRefactor({
  1. required String stackRefactorId,
})

Executes the stack refactor operation.

Parameter stackRefactorId : The ID associated with the stack refactor created from the CreateStackRefactor action.

Implementation

Future<void> executeStackRefactor({
  required String stackRefactorId,
}) async {
  final $request = <String, String>{
    'StackRefactorId': stackRefactorId,
  };
  await _protocol.send(
    $request,
    action: 'ExecuteStackRefactor',
    version: '2010-05-15',
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
  );
}