getDataSourceRun method
Gets an Amazon DataZone data source run.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ServiceQuotaExceededException.
May throw ThrottlingException.
May throw ValidationException.
Parameter domainIdentifier :
The ID of the domain in which this data source run was performed.
Parameter identifier :
The ID of the data source run.
Implementation
Future<GetDataSourceRunOutput> getDataSourceRun({
required String domainIdentifier,
required String identifier,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/v2/domains/${Uri.encodeComponent(domainIdentifier)}/data-source-runs/${Uri.encodeComponent(identifier)}',
exceptionFnMap: _exceptionFns,
);
return GetDataSourceRunOutput.fromJson(response);
}