describeLiveSource method
The live source to describe.
Parameter liveSourceName :
The name of the live source.
Parameter sourceLocationName :
The name of the source location associated with this Live Source.
Implementation
Future<DescribeLiveSourceResponse> describeLiveSource({
required String liveSourceName,
required String sourceLocationName,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/sourceLocation/${Uri.encodeComponent(sourceLocationName)}/liveSource/${Uri.encodeComponent(liveSourceName)}',
exceptionFnMap: _exceptionFns,
);
return DescribeLiveSourceResponse.fromJson(response);
}