stopPipe method
Stop an existing pipe.
May throw ConflictException.
May throw InternalException.
May throw NotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter name :
The name of the pipe.
Implementation
Future<StopPipeResponse> stopPipe({
required String name,
}) async {
final response = await _protocol.send(
payload: null,
method: 'POST',
requestUri: '/v1/pipes/${Uri.encodeComponent(name)}/stop',
exceptionFnMap: _exceptionFns,
);
return StopPipeResponse.fromJson(response);
}