{-# 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.WAFV2.ListLoggingConfigurations -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Retrieves an array of your LoggingConfiguration objects. module Amazonka.WAFV2.ListLoggingConfigurations ( -- * Creating a Request ListLoggingConfigurations (..), newListLoggingConfigurations, -- * Request Lenses listLoggingConfigurations_limit, listLoggingConfigurations_nextMarker, listLoggingConfigurations_scope, -- * Destructuring the Response ListLoggingConfigurationsResponse (..), newListLoggingConfigurationsResponse, -- * Response Lenses listLoggingConfigurationsResponse_loggingConfigurations, listLoggingConfigurationsResponse_nextMarker, listLoggingConfigurationsResponse_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.WAFV2.Types -- | /See:/ 'newListLoggingConfigurations' smart constructor. data ListLoggingConfigurations = ListLoggingConfigurations' { -- | The maximum number of objects that you want WAF to return for this -- request. If more objects are available, in the response, WAF provides a -- @NextMarker@ value that you can use in a subsequent call to get the next -- batch of objects. limit :: Prelude.Maybe Prelude.Natural, -- | When you request a list of objects with a @Limit@ setting, if the number -- of objects that are still available for retrieval exceeds the limit, WAF -- returns a @NextMarker@ value in the response. To retrieve the next batch -- of objects, provide the marker from the prior call in your next request. nextMarker :: Prelude.Maybe Prelude.Text, -- | Specifies whether this is for an Amazon CloudFront distribution or for a -- regional application. A regional application can be an Application Load -- Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, -- or an Amazon Cognito user pool. -- -- To work with CloudFront, you must also specify the Region US East (N. -- Virginia) as follows: -- -- - CLI - Specify the Region when you use the CloudFront scope: -- @--scope=CLOUDFRONT --region=us-east-1@. -- -- - API and SDKs - For all calls, use the Region endpoint us-east-1. scope :: Scope } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ListLoggingConfigurations' 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: -- -- 'limit', 'listLoggingConfigurations_limit' - The maximum number of objects that you want WAF to return for this -- request. If more objects are available, in the response, WAF provides a -- @NextMarker@ value that you can use in a subsequent call to get the next -- batch of objects. -- -- 'nextMarker', 'listLoggingConfigurations_nextMarker' - When you request a list of objects with a @Limit@ setting, if the number -- of objects that are still available for retrieval exceeds the limit, WAF -- returns a @NextMarker@ value in the response. To retrieve the next batch -- of objects, provide the marker from the prior call in your next request. -- -- 'scope', 'listLoggingConfigurations_scope' - Specifies whether this is for an Amazon CloudFront distribution or for a -- regional application. A regional application can be an Application Load -- Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, -- or an Amazon Cognito user pool. -- -- To work with CloudFront, you must also specify the Region US East (N. -- Virginia) as follows: -- -- - CLI - Specify the Region when you use the CloudFront scope: -- @--scope=CLOUDFRONT --region=us-east-1@. -- -- - API and SDKs - For all calls, use the Region endpoint us-east-1. newListLoggingConfigurations :: -- | 'scope' Scope -> ListLoggingConfigurations newListLoggingConfigurations pScope_ = ListLoggingConfigurations' { limit = Prelude.Nothing, nextMarker = Prelude.Nothing, scope = pScope_ } -- | The maximum number of objects that you want WAF to return for this -- request. If more objects are available, in the response, WAF provides a -- @NextMarker@ value that you can use in a subsequent call to get the next -- batch of objects. listLoggingConfigurations_limit :: Lens.Lens' ListLoggingConfigurations (Prelude.Maybe Prelude.Natural) listLoggingConfigurations_limit = Lens.lens (\ListLoggingConfigurations' {limit} -> limit) (\s@ListLoggingConfigurations' {} a -> s {limit = a} :: ListLoggingConfigurations) -- | When you request a list of objects with a @Limit@ setting, if the number -- of objects that are still available for retrieval exceeds the limit, WAF -- returns a @NextMarker@ value in the response. To retrieve the next batch -- of objects, provide the marker from the prior call in your next request. listLoggingConfigurations_nextMarker :: Lens.Lens' ListLoggingConfigurations (Prelude.Maybe Prelude.Text) listLoggingConfigurations_nextMarker = Lens.lens (\ListLoggingConfigurations' {nextMarker} -> nextMarker) (\s@ListLoggingConfigurations' {} a -> s {nextMarker = a} :: ListLoggingConfigurations) -- | Specifies whether this is for an Amazon CloudFront distribution or for a -- regional application. A regional application can be an Application Load -- Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, -- or an Amazon Cognito user pool. -- -- To work with CloudFront, you must also specify the Region US East (N. -- Virginia) as follows: -- -- - CLI - Specify the Region when you use the CloudFront scope: -- @--scope=CLOUDFRONT --region=us-east-1@. -- -- - API and SDKs - For all calls, use the Region endpoint us-east-1. listLoggingConfigurations_scope :: Lens.Lens' ListLoggingConfigurations Scope listLoggingConfigurations_scope = Lens.lens (\ListLoggingConfigurations' {scope} -> scope) (\s@ListLoggingConfigurations' {} a -> s {scope = a} :: ListLoggingConfigurations) instance Core.AWSRequest ListLoggingConfigurations where type AWSResponse ListLoggingConfigurations = ListLoggingConfigurationsResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> ListLoggingConfigurationsResponse' Prelude.<$> ( x Data..?> "LoggingConfigurations" Core..!@ Prelude.mempty ) Prelude.<*> (x Data..?> "NextMarker") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable ListLoggingConfigurations where hashWithSalt _salt ListLoggingConfigurations' {..} = _salt `Prelude.hashWithSalt` limit `Prelude.hashWithSalt` nextMarker `Prelude.hashWithSalt` scope instance Prelude.NFData ListLoggingConfigurations where rnf ListLoggingConfigurations' {..} = Prelude.rnf limit `Prelude.seq` Prelude.rnf nextMarker `Prelude.seq` Prelude.rnf scope instance Data.ToHeaders ListLoggingConfigurations where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "AWSWAF_20190729.ListLoggingConfigurations" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON ListLoggingConfigurations where toJSON ListLoggingConfigurations' {..} = Data.object ( Prelude.catMaybes [ ("Limit" Data..=) Prelude.<$> limit, ("NextMarker" Data..=) Prelude.<$> nextMarker, Prelude.Just ("Scope" Data..= scope) ] ) instance Data.ToPath ListLoggingConfigurations where toPath = Prelude.const "/" instance Data.ToQuery ListLoggingConfigurations where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newListLoggingConfigurationsResponse' smart constructor. data ListLoggingConfigurationsResponse = ListLoggingConfigurationsResponse' { loggingConfigurations :: Prelude.Maybe [LoggingConfiguration], -- | When you request a list of objects with a @Limit@ setting, if the number -- of objects that are still available for retrieval exceeds the limit, WAF -- returns a @NextMarker@ value in the response. To retrieve the next batch -- of objects, provide the marker from the prior call in your next request. nextMarker :: 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 'ListLoggingConfigurationsResponse' 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: -- -- 'loggingConfigurations', 'listLoggingConfigurationsResponse_loggingConfigurations' - -- -- 'nextMarker', 'listLoggingConfigurationsResponse_nextMarker' - When you request a list of objects with a @Limit@ setting, if the number -- of objects that are still available for retrieval exceeds the limit, WAF -- returns a @NextMarker@ value in the response. To retrieve the next batch -- of objects, provide the marker from the prior call in your next request. -- -- 'httpStatus', 'listLoggingConfigurationsResponse_httpStatus' - The response's http status code. newListLoggingConfigurationsResponse :: -- | 'httpStatus' Prelude.Int -> ListLoggingConfigurationsResponse newListLoggingConfigurationsResponse pHttpStatus_ = ListLoggingConfigurationsResponse' { loggingConfigurations = Prelude.Nothing, nextMarker = Prelude.Nothing, httpStatus = pHttpStatus_ } listLoggingConfigurationsResponse_loggingConfigurations :: Lens.Lens' ListLoggingConfigurationsResponse (Prelude.Maybe [LoggingConfiguration]) listLoggingConfigurationsResponse_loggingConfigurations = Lens.lens (\ListLoggingConfigurationsResponse' {loggingConfigurations} -> loggingConfigurations) (\s@ListLoggingConfigurationsResponse' {} a -> s {loggingConfigurations = a} :: ListLoggingConfigurationsResponse) Prelude.. Lens.mapping Lens.coerced -- | When you request a list of objects with a @Limit@ setting, if the number -- of objects that are still available for retrieval exceeds the limit, WAF -- returns a @NextMarker@ value in the response. To retrieve the next batch -- of objects, provide the marker from the prior call in your next request. listLoggingConfigurationsResponse_nextMarker :: Lens.Lens' ListLoggingConfigurationsResponse (Prelude.Maybe Prelude.Text) listLoggingConfigurationsResponse_nextMarker = Lens.lens (\ListLoggingConfigurationsResponse' {nextMarker} -> nextMarker) (\s@ListLoggingConfigurationsResponse' {} a -> s {nextMarker = a} :: ListLoggingConfigurationsResponse) -- | The response's http status code. listLoggingConfigurationsResponse_httpStatus :: Lens.Lens' ListLoggingConfigurationsResponse Prelude.Int listLoggingConfigurationsResponse_httpStatus = Lens.lens (\ListLoggingConfigurationsResponse' {httpStatus} -> httpStatus) (\s@ListLoggingConfigurationsResponse' {} a -> s {httpStatus = a} :: ListLoggingConfigurationsResponse) instance Prelude.NFData ListLoggingConfigurationsResponse where rnf ListLoggingConfigurationsResponse' {..} = Prelude.rnf loggingConfigurations `Prelude.seq` Prelude.rnf nextMarker `Prelude.seq` Prelude.rnf httpStatus