getLexicon method

Future<GetLexiconOutput> getLexicon({
  1. required String name,
})

Returns the content of the specified pronunciation lexicon stored in an Amazon Web Services Region. For more information, see Managing Lexicons.

May throw LexiconNotFoundException. May throw ServiceFailureException.

Parameter name : Name of the lexicon.

Implementation

Future<GetLexiconOutput> getLexicon({
  required String name,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/v1/lexicons/${Uri.encodeComponent(name)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetLexiconOutput.fromJson(response);
}