stopWorkflowRun method

Future<void> stopWorkflowRun({
  1. required String name,
  2. required String runId,
})

Stops the execution of the specified workflow run.

May throw InvalidInputException. May throw EntityNotFoundException. May throw InternalServiceException. May throw OperationTimeoutException. May throw IllegalWorkflowStateException.

Parameter name : The name of the workflow to stop.

Parameter runId : The ID of the workflow run to stop.

Implementation

Future<void> stopWorkflowRun({
  required String name,
  required String runId,
}) async {
  ArgumentError.checkNotNull(name, 'name');
  _s.validateStringLength(
    'name',
    name,
    1,
    255,
    isRequired: true,
  );
  ArgumentError.checkNotNull(runId, 'runId');
  _s.validateStringLength(
    'runId',
    runId,
    1,
    255,
    isRequired: true,
  );
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target': 'AWSGlue.StopWorkflowRun'
  };
  await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'Name': name,
      'RunId': runId,
    },
  );
}