getIdMappingWorkflow method

Future<GetIdMappingWorkflowOutput> getIdMappingWorkflow({
  1. required String workflowName,
})

Returns the IdMappingWorkflow with a given name, if it exists.

May throw AccessDeniedException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter workflowName : The name of the workflow.

Implementation

Future<GetIdMappingWorkflowOutput> getIdMappingWorkflow({
  required String workflowName,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/idmappingworkflows/${Uri.encodeComponent(workflowName)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetIdMappingWorkflowOutput.fromJson(response);
}