{-# 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.IoT.ListV2LoggingLevels -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Lists logging levels. -- -- Requires permission to access the -- -- action. -- -- This operation returns paginated results. module Amazonka.IoT.ListV2LoggingLevels ( -- * Creating a Request ListV2LoggingLevels (..), newListV2LoggingLevels, -- * Request Lenses listV2LoggingLevels_maxResults, listV2LoggingLevels_nextToken, listV2LoggingLevels_targetType, -- * Destructuring the Response ListV2LoggingLevelsResponse (..), newListV2LoggingLevelsResponse, -- * Response Lenses listV2LoggingLevelsResponse_logTargetConfigurations, listV2LoggingLevelsResponse_nextToken, listV2LoggingLevelsResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.IoT.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newListV2LoggingLevels' smart constructor. data ListV2LoggingLevels = ListV2LoggingLevels' { -- | The maximum number of results to return at one time. maxResults :: Prelude.Maybe Prelude.Natural, -- | To retrieve the next set of results, the @nextToken@ value from a -- previous response; otherwise __null__ to receive the first set of -- results. nextToken :: Prelude.Maybe Prelude.Text, -- | The type of resource for which you are configuring logging. Must be -- @THING_Group@. targetType :: Prelude.Maybe LogTargetType } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ListV2LoggingLevels' 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', 'listV2LoggingLevels_maxResults' - The maximum number of results to return at one time. -- -- 'nextToken', 'listV2LoggingLevels_nextToken' - To retrieve the next set of results, the @nextToken@ value from a -- previous response; otherwise __null__ to receive the first set of -- results. -- -- 'targetType', 'listV2LoggingLevels_targetType' - The type of resource for which you are configuring logging. Must be -- @THING_Group@. newListV2LoggingLevels :: ListV2LoggingLevels newListV2LoggingLevels = ListV2LoggingLevels' { maxResults = Prelude.Nothing, nextToken = Prelude.Nothing, targetType = Prelude.Nothing } -- | The maximum number of results to return at one time. listV2LoggingLevels_maxResults :: Lens.Lens' ListV2LoggingLevels (Prelude.Maybe Prelude.Natural) listV2LoggingLevels_maxResults = Lens.lens (\ListV2LoggingLevels' {maxResults} -> maxResults) (\s@ListV2LoggingLevels' {} a -> s {maxResults = a} :: ListV2LoggingLevels) -- | To retrieve the next set of results, the @nextToken@ value from a -- previous response; otherwise __null__ to receive the first set of -- results. listV2LoggingLevels_nextToken :: Lens.Lens' ListV2LoggingLevels (Prelude.Maybe Prelude.Text) listV2LoggingLevels_nextToken = Lens.lens (\ListV2LoggingLevels' {nextToken} -> nextToken) (\s@ListV2LoggingLevels' {} a -> s {nextToken = a} :: ListV2LoggingLevels) -- | The type of resource for which you are configuring logging. Must be -- @THING_Group@. listV2LoggingLevels_targetType :: Lens.Lens' ListV2LoggingLevels (Prelude.Maybe LogTargetType) listV2LoggingLevels_targetType = Lens.lens (\ListV2LoggingLevels' {targetType} -> targetType) (\s@ListV2LoggingLevels' {} a -> s {targetType = a} :: ListV2LoggingLevels) instance Core.AWSPager ListV2LoggingLevels where page rq rs | Core.stop ( rs Lens.^? listV2LoggingLevelsResponse_nextToken Prelude.. Lens._Just ) = Prelude.Nothing | Core.stop ( rs Lens.^? listV2LoggingLevelsResponse_logTargetConfigurations Prelude.. Lens._Just ) = Prelude.Nothing | Prelude.otherwise = Prelude.Just Prelude.$ rq Prelude.& listV2LoggingLevels_nextToken Lens..~ rs Lens.^? listV2LoggingLevelsResponse_nextToken Prelude.. Lens._Just instance Core.AWSRequest ListV2LoggingLevels where type AWSResponse ListV2LoggingLevels = ListV2LoggingLevelsResponse request overrides = Request.get (overrides defaultService) response = Response.receiveJSON ( \s h x -> ListV2LoggingLevelsResponse' Prelude.<$> ( x Data..?> "logTargetConfigurations" Core..!@ Prelude.mempty ) Prelude.<*> (x Data..?> "nextToken") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable ListV2LoggingLevels where hashWithSalt _salt ListV2LoggingLevels' {..} = _salt `Prelude.hashWithSalt` maxResults `Prelude.hashWithSalt` nextToken `Prelude.hashWithSalt` targetType instance Prelude.NFData ListV2LoggingLevels where rnf ListV2LoggingLevels' {..} = Prelude.rnf maxResults `Prelude.seq` Prelude.rnf nextToken `Prelude.seq` Prelude.rnf targetType instance Data.ToHeaders ListV2LoggingLevels where toHeaders = Prelude.const Prelude.mempty instance Data.ToPath ListV2LoggingLevels where toPath = Prelude.const "/v2LoggingLevel" instance Data.ToQuery ListV2LoggingLevels where toQuery ListV2LoggingLevels' {..} = Prelude.mconcat [ "maxResults" Data.=: maxResults, "nextToken" Data.=: nextToken, "targetType" Data.=: targetType ] -- | /See:/ 'newListV2LoggingLevelsResponse' smart constructor. data ListV2LoggingLevelsResponse = ListV2LoggingLevelsResponse' { -- | The logging configuration for a target. logTargetConfigurations :: Prelude.Maybe [LogTargetConfiguration], -- | The token to use to get the next set of results, or __null__ if there -- are no additional 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 'ListV2LoggingLevelsResponse' 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: -- -- 'logTargetConfigurations', 'listV2LoggingLevelsResponse_logTargetConfigurations' - The logging configuration for a target. -- -- 'nextToken', 'listV2LoggingLevelsResponse_nextToken' - The token to use to get the next set of results, or __null__ if there -- are no additional results. -- -- 'httpStatus', 'listV2LoggingLevelsResponse_httpStatus' - The response's http status code. newListV2LoggingLevelsResponse :: -- | 'httpStatus' Prelude.Int -> ListV2LoggingLevelsResponse newListV2LoggingLevelsResponse pHttpStatus_ = ListV2LoggingLevelsResponse' { logTargetConfigurations = Prelude.Nothing, nextToken = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | The logging configuration for a target. listV2LoggingLevelsResponse_logTargetConfigurations :: Lens.Lens' ListV2LoggingLevelsResponse (Prelude.Maybe [LogTargetConfiguration]) listV2LoggingLevelsResponse_logTargetConfigurations = Lens.lens (\ListV2LoggingLevelsResponse' {logTargetConfigurations} -> logTargetConfigurations) (\s@ListV2LoggingLevelsResponse' {} a -> s {logTargetConfigurations = a} :: ListV2LoggingLevelsResponse) Prelude.. Lens.mapping Lens.coerced -- | The token to use to get the next set of results, or __null__ if there -- are no additional results. listV2LoggingLevelsResponse_nextToken :: Lens.Lens' ListV2LoggingLevelsResponse (Prelude.Maybe Prelude.Text) listV2LoggingLevelsResponse_nextToken = Lens.lens (\ListV2LoggingLevelsResponse' {nextToken} -> nextToken) (\s@ListV2LoggingLevelsResponse' {} a -> s {nextToken = a} :: ListV2LoggingLevelsResponse) -- | The response's http status code. listV2LoggingLevelsResponse_httpStatus :: Lens.Lens' ListV2LoggingLevelsResponse Prelude.Int listV2LoggingLevelsResponse_httpStatus = Lens.lens (\ListV2LoggingLevelsResponse' {httpStatus} -> httpStatus) (\s@ListV2LoggingLevelsResponse' {} a -> s {httpStatus = a} :: ListV2LoggingLevelsResponse) instance Prelude.NFData ListV2LoggingLevelsResponse where rnf ListV2LoggingLevelsResponse' {..} = Prelude.rnf logTargetConfigurations `Prelude.seq` Prelude.rnf nextToken `Prelude.seq` Prelude.rnf httpStatus