{-# 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.DescribeEndpointAccess -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Describes a Redshift-managed VPC endpoint. -- -- This operation returns paginated results. module Amazonka.Redshift.DescribeEndpointAccess ( -- * Creating a Request DescribeEndpointAccess (..), newDescribeEndpointAccess, -- * Request Lenses describeEndpointAccess_clusterIdentifier, describeEndpointAccess_endpointName, describeEndpointAccess_marker, describeEndpointAccess_maxRecords, describeEndpointAccess_resourceOwner, describeEndpointAccess_vpcId, -- * Destructuring the Response DescribeEndpointAccessResponse (..), newDescribeEndpointAccessResponse, -- * Response Lenses describeEndpointAccessResponse_endpointAccessList, describeEndpointAccessResponse_marker, describeEndpointAccessResponse_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:/ 'newDescribeEndpointAccess' smart constructor. data DescribeEndpointAccess = DescribeEndpointAccess' { -- | The cluster identifier associated with the described endpoint. clusterIdentifier :: Prelude.Maybe Prelude.Text, -- | The name of the endpoint to be described. endpointName :: Prelude.Maybe Prelude.Text, -- | An optional pagination token provided by a previous -- @DescribeEndpointAccess@ request. If this parameter is specified, the -- response includes only records beyond the marker, up to the value -- specified by the @MaxRecords@ parameter. marker :: Prelude.Maybe Prelude.Text, -- | The maximum number of records to include in the response. If more -- records exist than the specified @MaxRecords@ value, a pagination token -- called a @Marker@ is included in the response so that the remaining -- results can be retrieved. maxRecords :: Prelude.Maybe Prelude.Int, -- | The Amazon Web Services account ID of the owner of the cluster. resourceOwner :: Prelude.Maybe Prelude.Text, -- | The virtual private cloud (VPC) identifier with access to the cluster. vpcId :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DescribeEndpointAccess' 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', 'describeEndpointAccess_clusterIdentifier' - The cluster identifier associated with the described endpoint. -- -- 'endpointName', 'describeEndpointAccess_endpointName' - The name of the endpoint to be described. -- -- 'marker', 'describeEndpointAccess_marker' - An optional pagination token provided by a previous -- @DescribeEndpointAccess@ request. If this parameter is specified, the -- response includes only records beyond the marker, up to the value -- specified by the @MaxRecords@ parameter. -- -- 'maxRecords', 'describeEndpointAccess_maxRecords' - The maximum number of records to include in the response. If more -- records exist than the specified @MaxRecords@ value, a pagination token -- called a @Marker@ is included in the response so that the remaining -- results can be retrieved. -- -- 'resourceOwner', 'describeEndpointAccess_resourceOwner' - The Amazon Web Services account ID of the owner of the cluster. -- -- 'vpcId', 'describeEndpointAccess_vpcId' - The virtual private cloud (VPC) identifier with access to the cluster. newDescribeEndpointAccess :: DescribeEndpointAccess newDescribeEndpointAccess = DescribeEndpointAccess' { clusterIdentifier = Prelude.Nothing, endpointName = Prelude.Nothing, marker = Prelude.Nothing, maxRecords = Prelude.Nothing, resourceOwner = Prelude.Nothing, vpcId = Prelude.Nothing } -- | The cluster identifier associated with the described endpoint. describeEndpointAccess_clusterIdentifier :: Lens.Lens' DescribeEndpointAccess (Prelude.Maybe Prelude.Text) describeEndpointAccess_clusterIdentifier = Lens.lens (\DescribeEndpointAccess' {clusterIdentifier} -> clusterIdentifier) (\s@DescribeEndpointAccess' {} a -> s {clusterIdentifier = a} :: DescribeEndpointAccess) -- | The name of the endpoint to be described. describeEndpointAccess_endpointName :: Lens.Lens' DescribeEndpointAccess (Prelude.Maybe Prelude.Text) describeEndpointAccess_endpointName = Lens.lens (\DescribeEndpointAccess' {endpointName} -> endpointName) (\s@DescribeEndpointAccess' {} a -> s {endpointName = a} :: DescribeEndpointAccess) -- | An optional pagination token provided by a previous -- @DescribeEndpointAccess@ request. If this parameter is specified, the -- response includes only records beyond the marker, up to the value -- specified by the @MaxRecords@ parameter. describeEndpointAccess_marker :: Lens.Lens' DescribeEndpointAccess (Prelude.Maybe Prelude.Text) describeEndpointAccess_marker = Lens.lens (\DescribeEndpointAccess' {marker} -> marker) (\s@DescribeEndpointAccess' {} a -> s {marker = a} :: DescribeEndpointAccess) -- | The maximum number of records to include in the response. If more -- records exist than the specified @MaxRecords@ value, a pagination token -- called a @Marker@ is included in the response so that the remaining -- results can be retrieved. describeEndpointAccess_maxRecords :: Lens.Lens' DescribeEndpointAccess (Prelude.Maybe Prelude.Int) describeEndpointAccess_maxRecords = Lens.lens (\DescribeEndpointAccess' {maxRecords} -> maxRecords) (\s@DescribeEndpointAccess' {} a -> s {maxRecords = a} :: DescribeEndpointAccess) -- | The Amazon Web Services account ID of the owner of the cluster. describeEndpointAccess_resourceOwner :: Lens.Lens' DescribeEndpointAccess (Prelude.Maybe Prelude.Text) describeEndpointAccess_resourceOwner = Lens.lens (\DescribeEndpointAccess' {resourceOwner} -> resourceOwner) (\s@DescribeEndpointAccess' {} a -> s {resourceOwner = a} :: DescribeEndpointAccess) -- | The virtual private cloud (VPC) identifier with access to the cluster. describeEndpointAccess_vpcId :: Lens.Lens' DescribeEndpointAccess (Prelude.Maybe Prelude.Text) describeEndpointAccess_vpcId = Lens.lens (\DescribeEndpointAccess' {vpcId} -> vpcId) (\s@DescribeEndpointAccess' {} a -> s {vpcId = a} :: DescribeEndpointAccess) instance Core.AWSPager DescribeEndpointAccess where page rq rs | Core.stop ( rs Lens.^? describeEndpointAccessResponse_marker Prelude.. Lens._Just ) = Prelude.Nothing | Core.stop ( rs Lens.^? describeEndpointAccessResponse_endpointAccessList Prelude.. Lens._Just ) = Prelude.Nothing | Prelude.otherwise = Prelude.Just Prelude.$ rq Prelude.& describeEndpointAccess_marker Lens..~ rs Lens.^? describeEndpointAccessResponse_marker Prelude.. Lens._Just instance Core.AWSRequest DescribeEndpointAccess where type AWSResponse DescribeEndpointAccess = DescribeEndpointAccessResponse request overrides = Request.postQuery (overrides defaultService) response = Response.receiveXMLWrapper "DescribeEndpointAccessResult" ( \s h x -> DescribeEndpointAccessResponse' Prelude.<$> ( x Data..@? "EndpointAccessList" Core..!@ Prelude.mempty Prelude.>>= Core.may (Data.parseXMLList "member") ) Prelude.<*> (x Data..@? "Marker") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable DescribeEndpointAccess where hashWithSalt _salt DescribeEndpointAccess' {..} = _salt `Prelude.hashWithSalt` clusterIdentifier `Prelude.hashWithSalt` endpointName `Prelude.hashWithSalt` marker `Prelude.hashWithSalt` maxRecords `Prelude.hashWithSalt` resourceOwner `Prelude.hashWithSalt` vpcId instance Prelude.NFData DescribeEndpointAccess where rnf DescribeEndpointAccess' {..} = Prelude.rnf clusterIdentifier `Prelude.seq` Prelude.rnf endpointName `Prelude.seq` Prelude.rnf marker `Prelude.seq` Prelude.rnf maxRecords `Prelude.seq` Prelude.rnf resourceOwner `Prelude.seq` Prelude.rnf vpcId instance Data.ToHeaders DescribeEndpointAccess where toHeaders = Prelude.const Prelude.mempty instance Data.ToPath DescribeEndpointAccess where toPath = Prelude.const "/" instance Data.ToQuery DescribeEndpointAccess where toQuery DescribeEndpointAccess' {..} = Prelude.mconcat [ "Action" Data.=: ("DescribeEndpointAccess" :: Prelude.ByteString), "Version" Data.=: ("2012-12-01" :: Prelude.ByteString), "ClusterIdentifier" Data.=: clusterIdentifier, "EndpointName" Data.=: endpointName, "Marker" Data.=: marker, "MaxRecords" Data.=: maxRecords, "ResourceOwner" Data.=: resourceOwner, "VpcId" Data.=: vpcId ] -- | /See:/ 'newDescribeEndpointAccessResponse' smart constructor. data DescribeEndpointAccessResponse = DescribeEndpointAccessResponse' { -- | The list of endpoints with access to the cluster. endpointAccessList :: Prelude.Maybe [EndpointAccess], -- | An optional pagination token provided by a previous -- @DescribeEndpointAccess@ request. If this parameter is specified, the -- response includes only records beyond the marker, up to the value -- specified by the @MaxRecords@ parameter. marker :: 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 'DescribeEndpointAccessResponse' 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: -- -- 'endpointAccessList', 'describeEndpointAccessResponse_endpointAccessList' - The list of endpoints with access to the cluster. -- -- 'marker', 'describeEndpointAccessResponse_marker' - An optional pagination token provided by a previous -- @DescribeEndpointAccess@ request. If this parameter is specified, the -- response includes only records beyond the marker, up to the value -- specified by the @MaxRecords@ parameter. -- -- 'httpStatus', 'describeEndpointAccessResponse_httpStatus' - The response's http status code. newDescribeEndpointAccessResponse :: -- | 'httpStatus' Prelude.Int -> DescribeEndpointAccessResponse newDescribeEndpointAccessResponse pHttpStatus_ = DescribeEndpointAccessResponse' { endpointAccessList = Prelude.Nothing, marker = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | The list of endpoints with access to the cluster. describeEndpointAccessResponse_endpointAccessList :: Lens.Lens' DescribeEndpointAccessResponse (Prelude.Maybe [EndpointAccess]) describeEndpointAccessResponse_endpointAccessList = Lens.lens (\DescribeEndpointAccessResponse' {endpointAccessList} -> endpointAccessList) (\s@DescribeEndpointAccessResponse' {} a -> s {endpointAccessList = a} :: DescribeEndpointAccessResponse) Prelude.. Lens.mapping Lens.coerced -- | An optional pagination token provided by a previous -- @DescribeEndpointAccess@ request. If this parameter is specified, the -- response includes only records beyond the marker, up to the value -- specified by the @MaxRecords@ parameter. describeEndpointAccessResponse_marker :: Lens.Lens' DescribeEndpointAccessResponse (Prelude.Maybe Prelude.Text) describeEndpointAccessResponse_marker = Lens.lens (\DescribeEndpointAccessResponse' {marker} -> marker) (\s@DescribeEndpointAccessResponse' {} a -> s {marker = a} :: DescribeEndpointAccessResponse) -- | The response's http status code. describeEndpointAccessResponse_httpStatus :: Lens.Lens' DescribeEndpointAccessResponse Prelude.Int describeEndpointAccessResponse_httpStatus = Lens.lens (\DescribeEndpointAccessResponse' {httpStatus} -> httpStatus) (\s@DescribeEndpointAccessResponse' {} a -> s {httpStatus = a} :: DescribeEndpointAccessResponse) instance Prelude.NFData DescribeEndpointAccessResponse where rnf DescribeEndpointAccessResponse' {..} = Prelude.rnf endpointAccessList `Prelude.seq` Prelude.rnf marker `Prelude.seq` Prelude.rnf httpStatus