describeBackupJob method
Returns backup job details for the specified BackupJobId.
May throw DependencyFailureException.
May throw InvalidParameterValueException.
May throw MissingParameterValueException.
May throw ResourceNotFoundException.
May throw ServiceUnavailableException.
Parameter backupJobId :
Uniquely identifies a request to Backup to back up a resource.
Implementation
Future<DescribeBackupJobOutput> describeBackupJob({
required String backupJobId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/backup-jobs/${Uri.encodeComponent(backupJobId)}',
exceptionFnMap: _exceptionFns,
);
return DescribeBackupJobOutput.fromJson(response);
}