describeFlow method
Provides a description of the specified flow.
May throw InternalServerException.
May throw ResourceNotFoundException.
Parameter flowName :
The specified name of the flow. Spaces are not allowed. Use underscores
(_) or hyphens (-) only.
Implementation
Future<DescribeFlowResponse> describeFlow({
required String flowName,
}) async {
final $payload = <String, dynamic>{
'flowName': flowName,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/describe-flow',
exceptionFnMap: _exceptionFns,
);
return DescribeFlowResponse.fromJson(response);
}