{-# 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.Redshift.DescribeUsageLimits -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Shows usage limits on a cluster. Results are filtered based on the -- combination of input usage limit identifier, cluster identifier, and -- feature type parameters: -- -- - If usage limit identifier, cluster identifier, and feature type are -- not provided, then all usage limit objects for the current account -- in the current region are returned. -- -- - If usage limit identifier is provided, then the corresponding usage -- limit object is returned. -- -- - If cluster identifier is provided, then all usage limit objects for -- the specified cluster are returned. -- -- - If cluster identifier and feature type are provided, then all usage -- limit objects for the combination of cluster and feature are -- returned. -- -- This operation returns paginated results. module Amazonka.Redshift.DescribeUsageLimits ( -- * Creating a Request DescribeUsageLimits (..), newDescribeUsageLimits, -- * Request Lenses describeUsageLimits_clusterIdentifier, describeUsageLimits_featureType, describeUsageLimits_marker, describeUsageLimits_maxRecords, describeUsageLimits_tagKeys, describeUsageLimits_tagValues, describeUsageLimits_usageLimitId, -- * Destructuring the Response DescribeUsageLimitsResponse (..), newDescribeUsageLimitsResponse, -- * Response Lenses describeUsageLimitsResponse_marker, describeUsageLimitsResponse_usageLimits, describeUsageLimitsResponse_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 Amazonka.Redshift.Types import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newDescribeUsageLimits' smart constructor. data DescribeUsageLimits = DescribeUsageLimits' { -- | The identifier of the cluster for which you want to describe usage -- limits. clusterIdentifier :: Prelude.Maybe Prelude.Text, -- | The feature type for which you want to describe usage limits. featureType :: Prelude.Maybe UsageLimitFeatureType, -- | An optional parameter that specifies the starting point to return a set -- of response records. When the results of a DescribeUsageLimits request -- exceed the value specified in @MaxRecords@, Amazon Web Services returns -- a value in the @Marker@ field of the response. You can retrieve the next -- set of response records by providing the returned marker value in the -- @Marker@ parameter and retrying the request. marker :: Prelude.Maybe Prelude.Text, -- | The maximum number of response records to return in each call. If the -- number of remaining response records exceeds the specified @MaxRecords@ -- value, a value is returned in a @marker@ field of the response. You can -- retrieve the next set of records by retrying the command with the -- returned marker value. -- -- Default: @100@ -- -- Constraints: minimum 20, maximum 100. maxRecords :: Prelude.Maybe Prelude.Int, -- | A tag key or keys for which you want to return all matching usage limit -- objects that are associated with the specified key or keys. For example, -- suppose that you have parameter groups that are tagged with keys called -- @owner@ and @environment@. If you specify both of these tag keys in the -- request, Amazon Redshift returns a response with the usage limit objects -- have either or both of these tag keys associated with them. tagKeys :: Prelude.Maybe [Prelude.Text], -- | A tag value or values for which you want to return all matching usage -- limit objects that are associated with the specified tag value or -- values. For example, suppose that you have parameter groups that are -- tagged with values called @admin@ and @test@. If you specify both of -- these tag values in the request, Amazon Redshift returns a response with -- the usage limit objects that have either or both of these tag values -- associated with them. tagValues :: Prelude.Maybe [Prelude.Text], -- | The identifier of the usage limit to describe. usageLimitId :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DescribeUsageLimits' 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: -- -- 'clusterIdentifier', 'describeUsageLimits_clusterIdentifier' - The identifier of the cluster for which you want to describe usage -- limits. -- -- 'featureType', 'describeUsageLimits_featureType' - The feature type for which you want to describe usage limits. -- -- 'marker', 'describeUsageLimits_marker' - An optional parameter that specifies the starting point to return a set -- of response records. When the results of a DescribeUsageLimits request -- exceed the value specified in @MaxRecords@, Amazon Web Services returns -- a value in the @Marker@ field of the response. You can retrieve the next -- set of response records by providing the returned marker value in the -- @Marker@ parameter and retrying the request. -- -- 'maxRecords', 'describeUsageLimits_maxRecords' - The maximum number of response records to return in each call. If the -- number of remaining response records exceeds the specified @MaxRecords@ -- value, a value is returned in a @marker@ field of the response. You can -- retrieve the next set of records by retrying the command with the -- returned marker value. -- -- Default: @100@ -- -- Constraints: minimum 20, maximum 100. -- -- 'tagKeys', 'describeUsageLimits_tagKeys' - A tag key or keys for which you want to return all matching usage limit -- objects that are associated with the specified key or keys. For example, -- suppose that you have parameter groups that are tagged with keys called -- @owner@ and @environment@. If you specify both of these tag keys in the -- request, Amazon Redshift returns a response with the usage limit objects -- have either or both of these tag keys associated with them. -- -- 'tagValues', 'describeUsageLimits_tagValues' - A tag value or values for which you want to return all matching usage -- limit objects that are associated with the specified tag value or -- values. For example, suppose that you have parameter groups that are -- tagged with values called @admin@ and @test@. If you specify both of -- these tag values in the request, Amazon Redshift returns a response with -- the usage limit objects that have either or both of these tag values -- associated with them. -- -- 'usageLimitId', 'describeUsageLimits_usageLimitId' - The identifier of the usage limit to describe. newDescribeUsageLimits :: DescribeUsageLimits newDescribeUsageLimits = DescribeUsageLimits' { clusterIdentifier = Prelude.Nothing, featureType = Prelude.Nothing, marker = Prelude.Nothing, maxRecords = Prelude.Nothing, tagKeys = Prelude.Nothing, tagValues = Prelude.Nothing, usageLimitId = Prelude.Nothing } -- | The identifier of the cluster for which you want to describe usage -- limits. describeUsageLimits_clusterIdentifier :: Lens.Lens' DescribeUsageLimits (Prelude.Maybe Prelude.Text) describeUsageLimits_clusterIdentifier = Lens.lens (\DescribeUsageLimits' {clusterIdentifier} -> clusterIdentifier) (\s@DescribeUsageLimits' {} a -> s {clusterIdentifier = a} :: DescribeUsageLimits) -- | The feature type for which you want to describe usage limits. describeUsageLimits_featureType :: Lens.Lens' DescribeUsageLimits (Prelude.Maybe UsageLimitFeatureType) describeUsageLimits_featureType = Lens.lens (\DescribeUsageLimits' {featureType} -> featureType) (\s@DescribeUsageLimits' {} a -> s {featureType = a} :: DescribeUsageLimits) -- | An optional parameter that specifies the starting point to return a set -- of response records. When the results of a DescribeUsageLimits request -- exceed the value specified in @MaxRecords@, Amazon Web Services returns -- a value in the @Marker@ field of the response. You can retrieve the next -- set of response records by providing the returned marker value in the -- @Marker@ parameter and retrying the request. describeUsageLimits_marker :: Lens.Lens' DescribeUsageLimits (Prelude.Maybe Prelude.Text) describeUsageLimits_marker = Lens.lens (\DescribeUsageLimits' {marker} -> marker) (\s@DescribeUsageLimits' {} a -> s {marker = a} :: DescribeUsageLimits) -- | The maximum number of response records to return in each call. If the -- number of remaining response records exceeds the specified @MaxRecords@ -- value, a value is returned in a @marker@ field of the response. You can -- retrieve the next set of records by retrying the command with the -- returned marker value. -- -- Default: @100@ -- -- Constraints: minimum 20, maximum 100. describeUsageLimits_maxRecords :: Lens.Lens' DescribeUsageLimits (Prelude.Maybe Prelude.Int) describeUsageLimits_maxRecords = Lens.lens (\DescribeUsageLimits' {maxRecords} -> maxRecords) (\s@DescribeUsageLimits' {} a -> s {maxRecords = a} :: DescribeUsageLimits) -- | A tag key or keys for which you want to return all matching usage limit -- objects that are associated with the specified key or keys. For example, -- suppose that you have parameter groups that are tagged with keys called -- @owner@ and @environment@. If you specify both of these tag keys in the -- request, Amazon Redshift returns a response with the usage limit objects -- have either or both of these tag keys associated with them. describeUsageLimits_tagKeys :: Lens.Lens' DescribeUsageLimits (Prelude.Maybe [Prelude.Text]) describeUsageLimits_tagKeys = Lens.lens (\DescribeUsageLimits' {tagKeys} -> tagKeys) (\s@DescribeUsageLimits' {} a -> s {tagKeys = a} :: DescribeUsageLimits) Prelude.. Lens.mapping Lens.coerced -- | A tag value or values for which you want to return all matching usage -- limit objects that are associated with the specified tag value or -- values. For example, suppose that you have parameter groups that are -- tagged with values called @admin@ and @test@. If you specify both of -- these tag values in the request, Amazon Redshift returns a response with -- the usage limit objects that have either or both of these tag values -- associated with them. describeUsageLimits_tagValues :: Lens.Lens' DescribeUsageLimits (Prelude.Maybe [Prelude.Text]) describeUsageLimits_tagValues = Lens.lens (\DescribeUsageLimits' {tagValues} -> tagValues) (\s@DescribeUsageLimits' {} a -> s {tagValues = a} :: DescribeUsageLimits) Prelude.. Lens.mapping Lens.coerced -- | The identifier of the usage limit to describe. describeUsageLimits_usageLimitId :: Lens.Lens' DescribeUsageLimits (Prelude.Maybe Prelude.Text) describeUsageLimits_usageLimitId = Lens.lens (\DescribeUsageLimits' {usageLimitId} -> usageLimitId) (\s@DescribeUsageLimits' {} a -> s {usageLimitId = a} :: DescribeUsageLimits) instance Core.AWSPager DescribeUsageLimits where page rq rs | Core.stop ( rs Lens.^? describeUsageLimitsResponse_marker Prelude.. Lens._Just ) = Prelude.Nothing | Core.stop ( rs Lens.^? describeUsageLimitsResponse_usageLimits Prelude.. Lens._Just ) = Prelude.Nothing | Prelude.otherwise = Prelude.Just Prelude.$ rq Prelude.& describeUsageLimits_marker Lens..~ rs Lens.^? describeUsageLimitsResponse_marker Prelude.. Lens._Just instance Core.AWSRequest DescribeUsageLimits where type AWSResponse DescribeUsageLimits = DescribeUsageLimitsResponse request overrides = Request.postQuery (overrides defaultService) response = Response.receiveXMLWrapper "DescribeUsageLimitsResult" ( \s h x -> DescribeUsageLimitsResponse' Prelude.<$> (x Data..@? "Marker") Prelude.<*> ( x Data..@? "UsageLimits" Core..!@ Prelude.mempty Prelude.>>= Core.may (Data.parseXMLList "member") ) Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable DescribeUsageLimits where hashWithSalt _salt DescribeUsageLimits' {..} = _salt `Prelude.hashWithSalt` clusterIdentifier `Prelude.hashWithSalt` featureType `Prelude.hashWithSalt` marker `Prelude.hashWithSalt` maxRecords `Prelude.hashWithSalt` tagKeys `Prelude.hashWithSalt` tagValues `Prelude.hashWithSalt` usageLimitId instance Prelude.NFData DescribeUsageLimits where rnf DescribeUsageLimits' {..} = Prelude.rnf clusterIdentifier `Prelude.seq` Prelude.rnf featureType `Prelude.seq` Prelude.rnf marker `Prelude.seq` Prelude.rnf maxRecords `Prelude.seq` Prelude.rnf tagKeys `Prelude.seq` Prelude.rnf tagValues `Prelude.seq` Prelude.rnf usageLimitId instance Data.ToHeaders DescribeUsageLimits where toHeaders = Prelude.const Prelude.mempty instance Data.ToPath DescribeUsageLimits where toPath = Prelude.const "/" instance Data.ToQuery DescribeUsageLimits where toQuery DescribeUsageLimits' {..} = Prelude.mconcat [ "Action" Data.=: ("DescribeUsageLimits" :: Prelude.ByteString), "Version" Data.=: ("2012-12-01" :: Prelude.ByteString), "ClusterIdentifier" Data.=: clusterIdentifier, "FeatureType" Data.=: featureType, "Marker" Data.=: marker, "MaxRecords" Data.=: maxRecords, "TagKeys" Data.=: Data.toQuery (Data.toQueryList "TagKey" Prelude.<$> tagKeys), "TagValues" Data.=: Data.toQuery (Data.toQueryList "TagValue" Prelude.<$> tagValues), "UsageLimitId" Data.=: usageLimitId ] -- | /See:/ 'newDescribeUsageLimitsResponse' smart constructor. data DescribeUsageLimitsResponse = DescribeUsageLimitsResponse' { -- | A value that indicates the starting point for the next set of response -- records in a subsequent request. If a value is returned in a response, -- you can retrieve the next set of records by providing this returned -- marker value in the @Marker@ parameter and retrying the command. If the -- @Marker@ field is empty, all response records have been retrieved for -- the request. marker :: Prelude.Maybe Prelude.Text, -- | Contains the output from the DescribeUsageLimits action. usageLimits :: Prelude.Maybe [UsageLimit], -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DescribeUsageLimitsResponse' 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: -- -- 'marker', 'describeUsageLimitsResponse_marker' - A value that indicates the starting point for the next set of response -- records in a subsequent request. If a value is returned in a response, -- you can retrieve the next set of records by providing this returned -- marker value in the @Marker@ parameter and retrying the command. If the -- @Marker@ field is empty, all response records have been retrieved for -- the request. -- -- 'usageLimits', 'describeUsageLimitsResponse_usageLimits' - Contains the output from the DescribeUsageLimits action. -- -- 'httpStatus', 'describeUsageLimitsResponse_httpStatus' - The response's http status code. newDescribeUsageLimitsResponse :: -- | 'httpStatus' Prelude.Int -> DescribeUsageLimitsResponse newDescribeUsageLimitsResponse pHttpStatus_ = DescribeUsageLimitsResponse' { marker = Prelude.Nothing, usageLimits = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | A value that indicates the starting point for the next set of response -- records in a subsequent request. If a value is returned in a response, -- you can retrieve the next set of records by providing this returned -- marker value in the @Marker@ parameter and retrying the command. If the -- @Marker@ field is empty, all response records have been retrieved for -- the request. describeUsageLimitsResponse_marker :: Lens.Lens' DescribeUsageLimitsResponse (Prelude.Maybe Prelude.Text) describeUsageLimitsResponse_marker = Lens.lens (\DescribeUsageLimitsResponse' {marker} -> marker) (\s@DescribeUsageLimitsResponse' {} a -> s {marker = a} :: DescribeUsageLimitsResponse) -- | Contains the output from the DescribeUsageLimits action. describeUsageLimitsResponse_usageLimits :: Lens.Lens' DescribeUsageLimitsResponse (Prelude.Maybe [UsageLimit]) describeUsageLimitsResponse_usageLimits = Lens.lens (\DescribeUsageLimitsResponse' {usageLimits} -> usageLimits) (\s@DescribeUsageLimitsResponse' {} a -> s {usageLimits = a} :: DescribeUsageLimitsResponse) Prelude.. Lens.mapping Lens.coerced -- | The response's http status code. describeUsageLimitsResponse_httpStatus :: Lens.Lens' DescribeUsageLimitsResponse Prelude.Int describeUsageLimitsResponse_httpStatus = Lens.lens (\DescribeUsageLimitsResponse' {httpStatus} -> httpStatus) (\s@DescribeUsageLimitsResponse' {} a -> s {httpStatus = a} :: DescribeUsageLimitsResponse) instance Prelude.NFData DescribeUsageLimitsResponse where rnf DescribeUsageLimitsResponse' {..} = Prelude.rnf marker `Prelude.seq` Prelude.rnf usageLimits `Prelude.seq` Prelude.rnf httpStatus