describeStackRefactor method

Future<DescribeStackRefactorOutput> describeStackRefactor({
  1. required String stackRefactorId,
})

Describes the stack refactor status.

May throw StackRefactorNotFoundException.

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

Implementation

Future<DescribeStackRefactorOutput> describeStackRefactor({
  required String stackRefactorId,
}) async {
  final $request = <String, String>{
    'StackRefactorId': stackRefactorId,
  };
  final $result = await _protocol.send(
    $request,
    action: 'DescribeStackRefactor',
    version: '2010-05-15',
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    resultWrapper: 'DescribeStackRefactorResult',
  );
  return DescribeStackRefactorOutput.fromXml($result);
}