{-# 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.DeleteObject -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Deletes an object and its associated attributes. Only objects with no -- children and no parents can be deleted. The maximum number of attributes -- that can be deleted during an object deletion is 30. For more -- information, see -- . module Amazonka.CloudDirectory.DeleteObject ( -- * Creating a Request DeleteObject (..), newDeleteObject, -- * Request Lenses deleteObject_directoryArn, deleteObject_objectReference, -- * Destructuring the Response DeleteObjectResponse (..), newDeleteObjectResponse, -- * Response Lenses deleteObjectResponse_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:/ 'newDeleteObject' smart constructor. data DeleteObject = DeleteObject' { -- | The Amazon Resource Name (ARN) that is associated with the Directory -- where the object resides. For more information, see arns. directoryArn :: Prelude.Text, -- | A reference that identifies the object. objectReference :: ObjectReference } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DeleteObject' 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', 'deleteObject_directoryArn' - The Amazon Resource Name (ARN) that is associated with the Directory -- where the object resides. For more information, see arns. -- -- 'objectReference', 'deleteObject_objectReference' - A reference that identifies the object. newDeleteObject :: -- | 'directoryArn' Prelude.Text -> -- | 'objectReference' ObjectReference -> DeleteObject newDeleteObject pDirectoryArn_ pObjectReference_ = DeleteObject' { directoryArn = pDirectoryArn_, objectReference = pObjectReference_ } -- | The Amazon Resource Name (ARN) that is associated with the Directory -- where the object resides. For more information, see arns. deleteObject_directoryArn :: Lens.Lens' DeleteObject Prelude.Text deleteObject_directoryArn = Lens.lens (\DeleteObject' {directoryArn} -> directoryArn) (\s@DeleteObject' {} a -> s {directoryArn = a} :: DeleteObject) -- | A reference that identifies the object. deleteObject_objectReference :: Lens.Lens' DeleteObject ObjectReference deleteObject_objectReference = Lens.lens (\DeleteObject' {objectReference} -> objectReference) (\s@DeleteObject' {} a -> s {objectReference = a} :: DeleteObject) instance Core.AWSRequest DeleteObject where type AWSResponse DeleteObject = DeleteObjectResponse request overrides = Request.putJSON (overrides defaultService) response = Response.receiveEmpty ( \s h x -> DeleteObjectResponse' Prelude.<$> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable DeleteObject where hashWithSalt _salt DeleteObject' {..} = _salt `Prelude.hashWithSalt` directoryArn `Prelude.hashWithSalt` objectReference instance Prelude.NFData DeleteObject where rnf DeleteObject' {..} = Prelude.rnf directoryArn `Prelude.seq` Prelude.rnf objectReference instance Data.ToHeaders DeleteObject where toHeaders DeleteObject' {..} = Prelude.mconcat ["x-amz-data-partition" Data.=# directoryArn] instance Data.ToJSON DeleteObject where toJSON DeleteObject' {..} = Data.object ( Prelude.catMaybes [ Prelude.Just ("ObjectReference" Data..= objectReference) ] ) instance Data.ToPath DeleteObject where toPath = Prelude.const "/amazonclouddirectory/2017-01-11/object/delete" instance Data.ToQuery DeleteObject where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newDeleteObjectResponse' smart constructor. data DeleteObjectResponse = DeleteObjectResponse' { -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DeleteObjectResponse' 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', 'deleteObjectResponse_httpStatus' - The response's http status code. newDeleteObjectResponse :: -- | 'httpStatus' Prelude.Int -> DeleteObjectResponse newDeleteObjectResponse pHttpStatus_ = DeleteObjectResponse' {httpStatus = pHttpStatus_} -- | The response's http status code. deleteObjectResponse_httpStatus :: Lens.Lens' DeleteObjectResponse Prelude.Int deleteObjectResponse_httpStatus = Lens.lens (\DeleteObjectResponse' {httpStatus} -> httpStatus) (\s@DeleteObjectResponse' {} a -> s {httpStatus = a} :: DeleteObjectResponse) instance Prelude.NFData DeleteObjectResponse where rnf DeleteObjectResponse' {..} = Prelude.rnf httpStatus