getConfiguredModelAlgorithm method

Future<GetConfiguredModelAlgorithmResponse> getConfiguredModelAlgorithm({
  1. required String configuredModelAlgorithmArn,
})

Returns information about a configured model algorithm.

May throw AccessDeniedException. May throw ResourceNotFoundException. May throw ValidationException.

Parameter configuredModelAlgorithmArn : The Amazon Resource Name (ARN) of the configured model algorithm that you want to return information about.

Implementation

Future<GetConfiguredModelAlgorithmResponse> getConfiguredModelAlgorithm({
  required String configuredModelAlgorithmArn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/configured-model-algorithms/${Uri.encodeComponent(configuredModelAlgorithmArn)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetConfiguredModelAlgorithmResponse.fromJson(response);
}