getMetadataTransferJob method

Future<GetMetadataTransferJobResponse> getMetadataTransferJob({
  1. required String metadataTransferJobId,
})

Gets a nmetadata transfer job.

May throw AccessDeniedException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter metadataTransferJobId : The metadata transfer job Id.

Implementation

Future<GetMetadataTransferJobResponse> getMetadataTransferJob({
  required String metadataTransferJobId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/metadata-transfer-jobs/${Uri.encodeComponent(metadataTransferJobId)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetMetadataTransferJobResponse.fromJson(response);
}