getModelCustomizationJob method
Future<GetModelCustomizationJobResponse>
getModelCustomizationJob({
- required String jobIdentifier,
Retrieves the properties associated with a model-customization job, including the status of the job. For more information, see Custom models in the Amazon Bedrock User Guide.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter jobIdentifier :
Identifier for the customization job.
Implementation
Future<GetModelCustomizationJobResponse> getModelCustomizationJob({
required String jobIdentifier,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/model-customization-jobs/${Uri.encodeComponent(jobIdentifier)}',
exceptionFnMap: _exceptionFns,
);
return GetModelCustomizationJobResponse.fromJson(response);
}