ExAws.Translate.list_terminologies

You're seeing just the function list_terminologies, go back to ExAws.Translate module for more information.
Link to this function

list_terminologies(opts \\ [])

View Source

Specs

list_terminologies(opts :: list_terminologies_opts()) ::
  ExAws.Operation.JSON.t()

Provides a list of custom terminologies associated with your account.

Examples

iex> ExAws.Translate.list_terminologies() |> ExAws.request()
{:ok,
  %{
    "TerminologyPropertiesList" => [
      %{
        "Arn" => "arn:aws:translate:us-east-1:126427819807:terminology/TEST/LATEST",
        "CreatedAt" => 1591997725.869,
        "LastUpdatedAt" => 1591997725.869,
        "Name" => "terminology-test",
        "SizeBytes" => 24,
        "SourceLanguageCode" => "en",
        "TargetLanguageCodes" => ["fr"],
        "TermCount" => 1
      }
    ]
  }
}

For more information visit the AWS Translate API Documentation for ListTerminologies.