{-# 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.IAM.DetachGroupPolicy -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Removes the specified managed policy from the specified IAM group. -- -- A group can also have inline policies embedded with it. To delete an -- inline policy, use DeleteGroupPolicy. For information about policies, -- see -- -- in the /IAM User Guide/. module Amazonka.IAM.DetachGroupPolicy ( -- * Creating a Request DetachGroupPolicy (..), newDetachGroupPolicy, -- * Request Lenses detachGroupPolicy_groupName, detachGroupPolicy_policyArn, -- * Destructuring the Response DetachGroupPolicyResponse (..), newDetachGroupPolicyResponse, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.IAM.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newDetachGroupPolicy' smart constructor. data DetachGroupPolicy = DetachGroupPolicy' { -- | The name (friendly name, not ARN) of the IAM group to detach the policy -- from. -- -- This parameter allows (through its -- ) a string of characters -- consisting of upper and lowercase alphanumeric characters with no -- spaces. You can also include any of the following characters: _+=,.\@- groupName :: Prelude.Text, -- | The Amazon Resource Name (ARN) of the IAM policy you want to detach. -- -- For more information about ARNs, see -- -- in the /Amazon Web Services General Reference/. policyArn :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DetachGroupPolicy' 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: -- -- 'groupName', 'detachGroupPolicy_groupName' - The name (friendly name, not ARN) of the IAM group to detach the policy -- from. -- -- This parameter allows (through its -- ) a string of characters -- consisting of upper and lowercase alphanumeric characters with no -- spaces. You can also include any of the following characters: _+=,.\@- -- -- 'policyArn', 'detachGroupPolicy_policyArn' - The Amazon Resource Name (ARN) of the IAM policy you want to detach. -- -- For more information about ARNs, see -- -- in the /Amazon Web Services General Reference/. newDetachGroupPolicy :: -- | 'groupName' Prelude.Text -> -- | 'policyArn' Prelude.Text -> DetachGroupPolicy newDetachGroupPolicy pGroupName_ pPolicyArn_ = DetachGroupPolicy' { groupName = pGroupName_, policyArn = pPolicyArn_ } -- | The name (friendly name, not ARN) of the IAM group to detach the policy -- from. -- -- This parameter allows (through its -- ) a string of characters -- consisting of upper and lowercase alphanumeric characters with no -- spaces. You can also include any of the following characters: _+=,.\@- detachGroupPolicy_groupName :: Lens.Lens' DetachGroupPolicy Prelude.Text detachGroupPolicy_groupName = Lens.lens (\DetachGroupPolicy' {groupName} -> groupName) (\s@DetachGroupPolicy' {} a -> s {groupName = a} :: DetachGroupPolicy) -- | The Amazon Resource Name (ARN) of the IAM policy you want to detach. -- -- For more information about ARNs, see -- -- in the /Amazon Web Services General Reference/. detachGroupPolicy_policyArn :: Lens.Lens' DetachGroupPolicy Prelude.Text detachGroupPolicy_policyArn = Lens.lens (\DetachGroupPolicy' {policyArn} -> policyArn) (\s@DetachGroupPolicy' {} a -> s {policyArn = a} :: DetachGroupPolicy) instance Core.AWSRequest DetachGroupPolicy where type AWSResponse DetachGroupPolicy = DetachGroupPolicyResponse request overrides = Request.postQuery (overrides defaultService) response = Response.receiveNull DetachGroupPolicyResponse' instance Prelude.Hashable DetachGroupPolicy where hashWithSalt _salt DetachGroupPolicy' {..} = _salt `Prelude.hashWithSalt` groupName `Prelude.hashWithSalt` policyArn instance Prelude.NFData DetachGroupPolicy where rnf DetachGroupPolicy' {..} = Prelude.rnf groupName `Prelude.seq` Prelude.rnf policyArn instance Data.ToHeaders DetachGroupPolicy where toHeaders = Prelude.const Prelude.mempty instance Data.ToPath DetachGroupPolicy where toPath = Prelude.const "/" instance Data.ToQuery DetachGroupPolicy where toQuery DetachGroupPolicy' {..} = Prelude.mconcat [ "Action" Data.=: ("DetachGroupPolicy" :: Prelude.ByteString), "Version" Data.=: ("2010-05-08" :: Prelude.ByteString), "GroupName" Data.=: groupName, "PolicyArn" Data.=: policyArn ] -- | /See:/ 'newDetachGroupPolicyResponse' smart constructor. data DetachGroupPolicyResponse = DetachGroupPolicyResponse' { } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DetachGroupPolicyResponse' with all optional fields omitted. -- -- Use or to modify other optional fields. newDetachGroupPolicyResponse :: DetachGroupPolicyResponse newDetachGroupPolicyResponse = DetachGroupPolicyResponse' instance Prelude.NFData DetachGroupPolicyResponse where rnf _ = ()