{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.Transcribe.ListCallAnalyticsCategories -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Provides a list of Call Analytics categories, including all rules that -- make up each category. -- -- To get detailed information about a specific Call Analytics category, -- use the operation. module Amazonka.Transcribe.ListCallAnalyticsCategories ( -- * Creating a Request ListCallAnalyticsCategories (..), newListCallAnalyticsCategories, -- * Request Lenses listCallAnalyticsCategories_maxResults, listCallAnalyticsCategories_nextToken, -- * Destructuring the Response ListCallAnalyticsCategoriesResponse (..), newListCallAnalyticsCategoriesResponse, -- * Response Lenses listCallAnalyticsCategoriesResponse_categories, listCallAnalyticsCategoriesResponse_nextToken, listCallAnalyticsCategoriesResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response import Amazonka.Transcribe.Types -- | /See:/ 'newListCallAnalyticsCategories' smart constructor. data ListCallAnalyticsCategories = ListCallAnalyticsCategories' { -- | The maximum number of Call Analytics categories to return in each page -- of results. If there are fewer results than the value that you specify, -- only the actual results are returned. If you don\'t specify a value, a -- default of 5 is used. maxResults :: Prelude.Maybe Prelude.Natural, -- | If your @ListCallAnalyticsCategories@ request returns more results than -- can be displayed, @NextToken@ is displayed in the response with an -- associated string. To get the next page of results, copy this string and -- repeat your request, including @NextToken@ with the value of the copied -- string. Repeat as needed to view all your results. nextToken :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ListCallAnalyticsCategories' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'maxResults', 'listCallAnalyticsCategories_maxResults' - The maximum number of Call Analytics categories to return in each page -- of results. If there are fewer results than the value that you specify, -- only the actual results are returned. If you don\'t specify a value, a -- default of 5 is used. -- -- 'nextToken', 'listCallAnalyticsCategories_nextToken' - If your @ListCallAnalyticsCategories@ request returns more results than -- can be displayed, @NextToken@ is displayed in the response with an -- associated string. To get the next page of results, copy this string and -- repeat your request, including @NextToken@ with the value of the copied -- string. Repeat as needed to view all your results. newListCallAnalyticsCategories :: ListCallAnalyticsCategories newListCallAnalyticsCategories = ListCallAnalyticsCategories' { maxResults = Prelude.Nothing, nextToken = Prelude.Nothing } -- | The maximum number of Call Analytics categories to return in each page -- of results. If there are fewer results than the value that you specify, -- only the actual results are returned. If you don\'t specify a value, a -- default of 5 is used. listCallAnalyticsCategories_maxResults :: Lens.Lens' ListCallAnalyticsCategories (Prelude.Maybe Prelude.Natural) listCallAnalyticsCategories_maxResults = Lens.lens (\ListCallAnalyticsCategories' {maxResults} -> maxResults) (\s@ListCallAnalyticsCategories' {} a -> s {maxResults = a} :: ListCallAnalyticsCategories) -- | If your @ListCallAnalyticsCategories@ request returns more results than -- can be displayed, @NextToken@ is displayed in the response with an -- associated string. To get the next page of results, copy this string and -- repeat your request, including @NextToken@ with the value of the copied -- string. Repeat as needed to view all your results. listCallAnalyticsCategories_nextToken :: Lens.Lens' ListCallAnalyticsCategories (Prelude.Maybe Prelude.Text) listCallAnalyticsCategories_nextToken = Lens.lens (\ListCallAnalyticsCategories' {nextToken} -> nextToken) (\s@ListCallAnalyticsCategories' {} a -> s {nextToken = a} :: ListCallAnalyticsCategories) instance Core.AWSRequest ListCallAnalyticsCategories where type AWSResponse ListCallAnalyticsCategories = ListCallAnalyticsCategoriesResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> ListCallAnalyticsCategoriesResponse' Prelude.<$> (x Data..?> "Categories" Core..!@ Prelude.mempty) Prelude.<*> (x Data..?> "NextToken") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable ListCallAnalyticsCategories where hashWithSalt _salt ListCallAnalyticsCategories' {..} = _salt `Prelude.hashWithSalt` maxResults `Prelude.hashWithSalt` nextToken instance Prelude.NFData ListCallAnalyticsCategories where rnf ListCallAnalyticsCategories' {..} = Prelude.rnf maxResults `Prelude.seq` Prelude.rnf nextToken instance Data.ToHeaders ListCallAnalyticsCategories where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "Transcribe.ListCallAnalyticsCategories" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON ListCallAnalyticsCategories where toJSON ListCallAnalyticsCategories' {..} = Data.object ( Prelude.catMaybes [ ("MaxResults" Data..=) Prelude.<$> maxResults, ("NextToken" Data..=) Prelude.<$> nextToken ] ) instance Data.ToPath ListCallAnalyticsCategories where toPath = Prelude.const "/" instance Data.ToQuery ListCallAnalyticsCategories where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newListCallAnalyticsCategoriesResponse' smart constructor. data ListCallAnalyticsCategoriesResponse = ListCallAnalyticsCategoriesResponse' { -- | Provides detailed information about your Call Analytics categories, -- including all the rules associated with each category. categories :: Prelude.Maybe [CategoryProperties], -- | If @NextToken@ is present in your response, it indicates that not all -- results are displayed. To view the next set of results, copy the string -- associated with the @NextToken@ parameter in your results output, then -- run your request again including @NextToken@ with the value of the -- copied string. Repeat as needed to view all your results. nextToken :: Prelude.Maybe Prelude.Text, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ListCallAnalyticsCategoriesResponse' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'categories', 'listCallAnalyticsCategoriesResponse_categories' - Provides detailed information about your Call Analytics categories, -- including all the rules associated with each category. -- -- 'nextToken', 'listCallAnalyticsCategoriesResponse_nextToken' - If @NextToken@ is present in your response, it indicates that not all -- results are displayed. To view the next set of results, copy the string -- associated with the @NextToken@ parameter in your results output, then -- run your request again including @NextToken@ with the value of the -- copied string. Repeat as needed to view all your results. -- -- 'httpStatus', 'listCallAnalyticsCategoriesResponse_httpStatus' - The response's http status code. newListCallAnalyticsCategoriesResponse :: -- | 'httpStatus' Prelude.Int -> ListCallAnalyticsCategoriesResponse newListCallAnalyticsCategoriesResponse pHttpStatus_ = ListCallAnalyticsCategoriesResponse' { categories = Prelude.Nothing, nextToken = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | Provides detailed information about your Call Analytics categories, -- including all the rules associated with each category. listCallAnalyticsCategoriesResponse_categories :: Lens.Lens' ListCallAnalyticsCategoriesResponse (Prelude.Maybe [CategoryProperties]) listCallAnalyticsCategoriesResponse_categories = Lens.lens (\ListCallAnalyticsCategoriesResponse' {categories} -> categories) (\s@ListCallAnalyticsCategoriesResponse' {} a -> s {categories = a} :: ListCallAnalyticsCategoriesResponse) Prelude.. Lens.mapping Lens.coerced -- | If @NextToken@ is present in your response, it indicates that not all -- results are displayed. To view the next set of results, copy the string -- associated with the @NextToken@ parameter in your results output, then -- run your request again including @NextToken@ with the value of the -- copied string. Repeat as needed to view all your results. listCallAnalyticsCategoriesResponse_nextToken :: Lens.Lens' ListCallAnalyticsCategoriesResponse (Prelude.Maybe Prelude.Text) listCallAnalyticsCategoriesResponse_nextToken = Lens.lens (\ListCallAnalyticsCategoriesResponse' {nextToken} -> nextToken) (\s@ListCallAnalyticsCategoriesResponse' {} a -> s {nextToken = a} :: ListCallAnalyticsCategoriesResponse) -- | The response's http status code. listCallAnalyticsCategoriesResponse_httpStatus :: Lens.Lens' ListCallAnalyticsCategoriesResponse Prelude.Int listCallAnalyticsCategoriesResponse_httpStatus = Lens.lens (\ListCallAnalyticsCategoriesResponse' {httpStatus} -> httpStatus) (\s@ListCallAnalyticsCategoriesResponse' {} a -> s {httpStatus = a} :: ListCallAnalyticsCategoriesResponse) instance Prelude.NFData ListCallAnalyticsCategoriesResponse where rnf ListCallAnalyticsCategoriesResponse' {..} = Prelude.rnf categories `Prelude.seq` Prelude.rnf nextToken `Prelude.seq` Prelude.rnf httpStatus