packages feed

amazonka-securityhub-2.0: gen/Amazonka/SecurityHub/DisableSecurityHub.hs

{-# 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.DisableSecurityHub
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Disables Security Hub in your account only in the current Region. To
-- disable Security Hub in all Regions, you must submit one request per
-- Region where you have enabled Security Hub.
--
-- When you disable Security Hub for an administrator account, it doesn\'t
-- disable Security Hub for any associated member accounts.
--
-- When you disable Security Hub, your existing findings and insights and
-- any Security Hub configuration settings are deleted after 90 days and
-- cannot be recovered. Any standards that were enabled are disabled, and
-- your administrator and member account associations are removed.
--
-- If you want to save your existing findings, you must export them before
-- you disable Security Hub.
module Amazonka.SecurityHub.DisableSecurityHub
  ( -- * Creating a Request
    DisableSecurityHub (..),
    newDisableSecurityHub,

    -- * Destructuring the Response
    DisableSecurityHubResponse (..),
    newDisableSecurityHubResponse,

    -- * Response Lenses
    disableSecurityHubResponse_httpStatus,
  )
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:/ 'newDisableSecurityHub' smart constructor.
data DisableSecurityHub = DisableSecurityHub'
  {
  }
  deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)

-- |
-- Create a value of 'DisableSecurityHub' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
newDisableSecurityHub ::
  DisableSecurityHub
newDisableSecurityHub = DisableSecurityHub'

instance Core.AWSRequest DisableSecurityHub where
  type
    AWSResponse DisableSecurityHub =
      DisableSecurityHubResponse
  request overrides =
    Request.delete (overrides defaultService)
  response =
    Response.receiveEmpty
      ( \s h x ->
          DisableSecurityHubResponse'
            Prelude.<$> (Prelude.pure (Prelude.fromEnum s))
      )

instance Prelude.Hashable DisableSecurityHub where
  hashWithSalt _salt _ =
    _salt `Prelude.hashWithSalt` ()

instance Prelude.NFData DisableSecurityHub where
  rnf _ = ()

instance Data.ToHeaders DisableSecurityHub where
  toHeaders =
    Prelude.const
      ( Prelude.mconcat
          [ "Content-Type"
              Data.=# ( "application/x-amz-json-1.1" ::
                          Prelude.ByteString
                      )
          ]
      )

instance Data.ToPath DisableSecurityHub where
  toPath = Prelude.const "/accounts"

instance Data.ToQuery DisableSecurityHub where
  toQuery = Prelude.const Prelude.mempty

-- | /See:/ 'newDisableSecurityHubResponse' smart constructor.
data DisableSecurityHubResponse = DisableSecurityHubResponse'
  { -- | The response's http status code.
    httpStatus :: Prelude.Int
  }
  deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)

-- |
-- Create a value of 'DisableSecurityHubResponse' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'httpStatus', 'disableSecurityHubResponse_httpStatus' - The response's http status code.
newDisableSecurityHubResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  DisableSecurityHubResponse
newDisableSecurityHubResponse pHttpStatus_ =
  DisableSecurityHubResponse'
    { httpStatus =
        pHttpStatus_
    }

-- | The response's http status code.
disableSecurityHubResponse_httpStatus :: Lens.Lens' DisableSecurityHubResponse Prelude.Int
disableSecurityHubResponse_httpStatus = Lens.lens (\DisableSecurityHubResponse' {httpStatus} -> httpStatus) (\s@DisableSecurityHubResponse' {} a -> s {httpStatus = a} :: DisableSecurityHubResponse)

instance Prelude.NFData DisableSecurityHubResponse where
  rnf DisableSecurityHubResponse' {..} =
    Prelude.rnf httpStatus