{-# 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.ModifyEndpointAccess -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Modifies a Redshift-managed VPC endpoint. module Amazonka.Redshift.ModifyEndpointAccess ( -- * Creating a Request ModifyEndpointAccess (..), newModifyEndpointAccess, -- * Request Lenses modifyEndpointAccess_vpcSecurityGroupIds, modifyEndpointAccess_endpointName, -- * Destructuring the Response EndpointAccess (..), newEndpointAccess, -- * Response Lenses endpointAccess_address, endpointAccess_clusterIdentifier, endpointAccess_endpointCreateTime, endpointAccess_endpointName, endpointAccess_endpointStatus, endpointAccess_port, endpointAccess_resourceOwner, endpointAccess_subnetGroupName, endpointAccess_vpcEndpoint, endpointAccess_vpcSecurityGroups, ) 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:/ 'newModifyEndpointAccess' smart constructor. data ModifyEndpointAccess = ModifyEndpointAccess' { -- | The complete list of VPC security groups associated with the endpoint -- after the endpoint is modified. vpcSecurityGroupIds :: Prelude.Maybe [Prelude.Text], -- | The endpoint to be modified. endpointName :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ModifyEndpointAccess' 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: -- -- 'vpcSecurityGroupIds', 'modifyEndpointAccess_vpcSecurityGroupIds' - The complete list of VPC security groups associated with the endpoint -- after the endpoint is modified. -- -- 'endpointName', 'modifyEndpointAccess_endpointName' - The endpoint to be modified. newModifyEndpointAccess :: -- | 'endpointName' Prelude.Text -> ModifyEndpointAccess newModifyEndpointAccess pEndpointName_ = ModifyEndpointAccess' { vpcSecurityGroupIds = Prelude.Nothing, endpointName = pEndpointName_ } -- | The complete list of VPC security groups associated with the endpoint -- after the endpoint is modified. modifyEndpointAccess_vpcSecurityGroupIds :: Lens.Lens' ModifyEndpointAccess (Prelude.Maybe [Prelude.Text]) modifyEndpointAccess_vpcSecurityGroupIds = Lens.lens (\ModifyEndpointAccess' {vpcSecurityGroupIds} -> vpcSecurityGroupIds) (\s@ModifyEndpointAccess' {} a -> s {vpcSecurityGroupIds = a} :: ModifyEndpointAccess) Prelude.. Lens.mapping Lens.coerced -- | The endpoint to be modified. modifyEndpointAccess_endpointName :: Lens.Lens' ModifyEndpointAccess Prelude.Text modifyEndpointAccess_endpointName = Lens.lens (\ModifyEndpointAccess' {endpointName} -> endpointName) (\s@ModifyEndpointAccess' {} a -> s {endpointName = a} :: ModifyEndpointAccess) instance Core.AWSRequest ModifyEndpointAccess where type AWSResponse ModifyEndpointAccess = EndpointAccess request overrides = Request.postQuery (overrides defaultService) response = Response.receiveXMLWrapper "ModifyEndpointAccessResult" (\s h x -> Data.parseXML x) instance Prelude.Hashable ModifyEndpointAccess where hashWithSalt _salt ModifyEndpointAccess' {..} = _salt `Prelude.hashWithSalt` vpcSecurityGroupIds `Prelude.hashWithSalt` endpointName instance Prelude.NFData ModifyEndpointAccess where rnf ModifyEndpointAccess' {..} = Prelude.rnf vpcSecurityGroupIds `Prelude.seq` Prelude.rnf endpointName instance Data.ToHeaders ModifyEndpointAccess where toHeaders = Prelude.const Prelude.mempty instance Data.ToPath ModifyEndpointAccess where toPath = Prelude.const "/" instance Data.ToQuery ModifyEndpointAccess where toQuery ModifyEndpointAccess' {..} = Prelude.mconcat [ "Action" Data.=: ("ModifyEndpointAccess" :: Prelude.ByteString), "Version" Data.=: ("2012-12-01" :: Prelude.ByteString), "VpcSecurityGroupIds" Data.=: Data.toQuery ( Data.toQueryList "VpcSecurityGroupId" Prelude.<$> vpcSecurityGroupIds ), "EndpointName" Data.=: endpointName ]