describeSchedule method
Returns the definition of a specific DataBrew schedule.
May throw ResourceNotFoundException.
May throw ValidationException.
Parameter name :
The name of the schedule to be described.
Implementation
Future<DescribeScheduleResponse> describeSchedule({
required String name,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/schedules/${Uri.encodeComponent(name)}',
exceptionFnMap: _exceptionFns,
);
return DescribeScheduleResponse.fromJson(response);
}