{-# 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.CloudDirectory.DetachPolicy -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Detaches a policy from an object. module Amazonka.CloudDirectory.DetachPolicy ( -- * Creating a Request DetachPolicy (..), newDetachPolicy, -- * Request Lenses detachPolicy_directoryArn, detachPolicy_policyReference, detachPolicy_objectReference, -- * Destructuring the Response DetachPolicyResponse (..), newDetachPolicyResponse, -- * Response Lenses detachPolicyResponse_httpStatus, ) where import Amazonka.CloudDirectory.Types 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 -- | /See:/ 'newDetachPolicy' smart constructor. data DetachPolicy = DetachPolicy' { -- | The Amazon Resource Name (ARN) that is associated with the Directory -- where both objects reside. For more information, see arns. directoryArn :: Prelude.Text, -- | Reference that identifies the policy object. policyReference :: ObjectReference, -- | Reference that identifies the object whose policy object will be -- detached. objectReference :: ObjectReference } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DetachPolicy' 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: -- -- 'directoryArn', 'detachPolicy_directoryArn' - The Amazon Resource Name (ARN) that is associated with the Directory -- where both objects reside. For more information, see arns. -- -- 'policyReference', 'detachPolicy_policyReference' - Reference that identifies the policy object. -- -- 'objectReference', 'detachPolicy_objectReference' - Reference that identifies the object whose policy object will be -- detached. newDetachPolicy :: -- | 'directoryArn' Prelude.Text -> -- | 'policyReference' ObjectReference -> -- | 'objectReference' ObjectReference -> DetachPolicy newDetachPolicy pDirectoryArn_ pPolicyReference_ pObjectReference_ = DetachPolicy' { directoryArn = pDirectoryArn_, policyReference = pPolicyReference_, objectReference = pObjectReference_ } -- | The Amazon Resource Name (ARN) that is associated with the Directory -- where both objects reside. For more information, see arns. detachPolicy_directoryArn :: Lens.Lens' DetachPolicy Prelude.Text detachPolicy_directoryArn = Lens.lens (\DetachPolicy' {directoryArn} -> directoryArn) (\s@DetachPolicy' {} a -> s {directoryArn = a} :: DetachPolicy) -- | Reference that identifies the policy object. detachPolicy_policyReference :: Lens.Lens' DetachPolicy ObjectReference detachPolicy_policyReference = Lens.lens (\DetachPolicy' {policyReference} -> policyReference) (\s@DetachPolicy' {} a -> s {policyReference = a} :: DetachPolicy) -- | Reference that identifies the object whose policy object will be -- detached. detachPolicy_objectReference :: Lens.Lens' DetachPolicy ObjectReference detachPolicy_objectReference = Lens.lens (\DetachPolicy' {objectReference} -> objectReference) (\s@DetachPolicy' {} a -> s {objectReference = a} :: DetachPolicy) instance Core.AWSRequest DetachPolicy where type AWSResponse DetachPolicy = DetachPolicyResponse request overrides = Request.putJSON (overrides defaultService) response = Response.receiveEmpty ( \s h x -> DetachPolicyResponse' Prelude.<$> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable DetachPolicy where hashWithSalt _salt DetachPolicy' {..} = _salt `Prelude.hashWithSalt` directoryArn `Prelude.hashWithSalt` policyReference `Prelude.hashWithSalt` objectReference instance Prelude.NFData DetachPolicy where rnf DetachPolicy' {..} = Prelude.rnf directoryArn `Prelude.seq` Prelude.rnf policyReference `Prelude.seq` Prelude.rnf objectReference instance Data.ToHeaders DetachPolicy where toHeaders DetachPolicy' {..} = Prelude.mconcat ["x-amz-data-partition" Data.=# directoryArn] instance Data.ToJSON DetachPolicy where toJSON DetachPolicy' {..} = Data.object ( Prelude.catMaybes [ Prelude.Just ("PolicyReference" Data..= policyReference), Prelude.Just ("ObjectReference" Data..= objectReference) ] ) instance Data.ToPath DetachPolicy where toPath = Prelude.const "/amazonclouddirectory/2017-01-11/policy/detach" instance Data.ToQuery DetachPolicy where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newDetachPolicyResponse' smart constructor. data DetachPolicyResponse = DetachPolicyResponse' { -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DetachPolicyResponse' 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: -- -- 'httpStatus', 'detachPolicyResponse_httpStatus' - The response's http status code. newDetachPolicyResponse :: -- | 'httpStatus' Prelude.Int -> DetachPolicyResponse newDetachPolicyResponse pHttpStatus_ = DetachPolicyResponse' {httpStatus = pHttpStatus_} -- | The response's http status code. detachPolicyResponse_httpStatus :: Lens.Lens' DetachPolicyResponse Prelude.Int detachPolicyResponse_httpStatus = Lens.lens (\DetachPolicyResponse' {httpStatus} -> httpStatus) (\s@DetachPolicyResponse' {} a -> s {httpStatus = a} :: DetachPolicyResponse) instance Prelude.NFData DetachPolicyResponse where rnf DetachPolicyResponse' {..} = Prelude.rnf httpStatus