{-# 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.SecurityHub.DeleteInsight -- 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 the insight specified by the @InsightArn@. module Amazonka.SecurityHub.DeleteInsight ( -- * Creating a Request DeleteInsight (..), newDeleteInsight, -- * Request Lenses deleteInsight_insightArn, -- * Destructuring the Response DeleteInsightResponse (..), newDeleteInsightResponse, -- * Response Lenses deleteInsightResponse_httpStatus, deleteInsightResponse_insightArn, ) 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 qualified Amazonka.Request as Request import qualified Amazonka.Response as Response import Amazonka.SecurityHub.Types -- | /See:/ 'newDeleteInsight' smart constructor. data DeleteInsight = DeleteInsight' { -- | The ARN of the insight to delete. insightArn :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DeleteInsight' 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: -- -- 'insightArn', 'deleteInsight_insightArn' - The ARN of the insight to delete. newDeleteInsight :: -- | 'insightArn' Prelude.Text -> DeleteInsight newDeleteInsight pInsightArn_ = DeleteInsight' {insightArn = pInsightArn_} -- | The ARN of the insight to delete. deleteInsight_insightArn :: Lens.Lens' DeleteInsight Prelude.Text deleteInsight_insightArn = Lens.lens (\DeleteInsight' {insightArn} -> insightArn) (\s@DeleteInsight' {} a -> s {insightArn = a} :: DeleteInsight) instance Core.AWSRequest DeleteInsight where type AWSResponse DeleteInsight = DeleteInsightResponse request overrides = Request.delete (overrides defaultService) response = Response.receiveJSON ( \s h x -> DeleteInsightResponse' Prelude.<$> (Prelude.pure (Prelude.fromEnum s)) Prelude.<*> (x Data..:> "InsightArn") ) instance Prelude.Hashable DeleteInsight where hashWithSalt _salt DeleteInsight' {..} = _salt `Prelude.hashWithSalt` insightArn instance Prelude.NFData DeleteInsight where rnf DeleteInsight' {..} = Prelude.rnf insightArn instance Data.ToHeaders DeleteInsight where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToPath DeleteInsight where toPath DeleteInsight' {..} = Prelude.mconcat ["/insights/", Data.toBS insightArn] instance Data.ToQuery DeleteInsight where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newDeleteInsightResponse' smart constructor. data DeleteInsightResponse = DeleteInsightResponse' { -- | The response's http status code. httpStatus :: Prelude.Int, -- | The ARN of the insight that was deleted. insightArn :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DeleteInsightResponse' 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', 'deleteInsightResponse_httpStatus' - The response's http status code. -- -- 'insightArn', 'deleteInsightResponse_insightArn' - The ARN of the insight that was deleted. newDeleteInsightResponse :: -- | 'httpStatus' Prelude.Int -> -- | 'insightArn' Prelude.Text -> DeleteInsightResponse newDeleteInsightResponse pHttpStatus_ pInsightArn_ = DeleteInsightResponse' { httpStatus = pHttpStatus_, insightArn = pInsightArn_ } -- | The response's http status code. deleteInsightResponse_httpStatus :: Lens.Lens' DeleteInsightResponse Prelude.Int deleteInsightResponse_httpStatus = Lens.lens (\DeleteInsightResponse' {httpStatus} -> httpStatus) (\s@DeleteInsightResponse' {} a -> s {httpStatus = a} :: DeleteInsightResponse) -- | The ARN of the insight that was deleted. deleteInsightResponse_insightArn :: Lens.Lens' DeleteInsightResponse Prelude.Text deleteInsightResponse_insightArn = Lens.lens (\DeleteInsightResponse' {insightArn} -> insightArn) (\s@DeleteInsightResponse' {} a -> s {insightArn = a} :: DeleteInsightResponse) instance Prelude.NFData DeleteInsightResponse where rnf DeleteInsightResponse' {..} = Prelude.rnf httpStatus `Prelude.seq` Prelude.rnf insightArn