{-# 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.Synthetics.DeleteGroup -- 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 a group. The group doesn\'t need to be empty to be deleted. If -- there are canaries in the group, they are not deleted when you delete -- the group. -- -- Groups are a global resource that appear in all Regions, but the request -- to delete a group must be made from its home Region. You can find the -- home Region of a group within its ARN. module Amazonka.Synthetics.DeleteGroup ( -- * Creating a Request DeleteGroup (..), newDeleteGroup, -- * Request Lenses deleteGroup_groupIdentifier, -- * Destructuring the Response DeleteGroupResponse (..), newDeleteGroupResponse, -- * Response Lenses deleteGroupResponse_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.Synthetics.Types -- | /See:/ 'newDeleteGroup' smart constructor. data DeleteGroup = DeleteGroup' { -- | Specifies which group to delete. You can specify the group name, the -- ARN, or the group ID as the @GroupIdentifier@. groupIdentifier :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DeleteGroup' 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: -- -- 'groupIdentifier', 'deleteGroup_groupIdentifier' - Specifies which group to delete. You can specify the group name, the -- ARN, or the group ID as the @GroupIdentifier@. newDeleteGroup :: -- | 'groupIdentifier' Prelude.Text -> DeleteGroup newDeleteGroup pGroupIdentifier_ = DeleteGroup' {groupIdentifier = pGroupIdentifier_} -- | Specifies which group to delete. You can specify the group name, the -- ARN, or the group ID as the @GroupIdentifier@. deleteGroup_groupIdentifier :: Lens.Lens' DeleteGroup Prelude.Text deleteGroup_groupIdentifier = Lens.lens (\DeleteGroup' {groupIdentifier} -> groupIdentifier) (\s@DeleteGroup' {} a -> s {groupIdentifier = a} :: DeleteGroup) instance Core.AWSRequest DeleteGroup where type AWSResponse DeleteGroup = DeleteGroupResponse request overrides = Request.delete (overrides defaultService) response = Response.receiveEmpty ( \s h x -> DeleteGroupResponse' Prelude.<$> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable DeleteGroup where hashWithSalt _salt DeleteGroup' {..} = _salt `Prelude.hashWithSalt` groupIdentifier instance Prelude.NFData DeleteGroup where rnf DeleteGroup' {..} = Prelude.rnf groupIdentifier instance Data.ToHeaders DeleteGroup where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToPath DeleteGroup where toPath DeleteGroup' {..} = Prelude.mconcat ["/group/", Data.toBS groupIdentifier] instance Data.ToQuery DeleteGroup where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newDeleteGroupResponse' smart constructor. data DeleteGroupResponse = DeleteGroupResponse' { -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DeleteGroupResponse' 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', 'deleteGroupResponse_httpStatus' - The response's http status code. newDeleteGroupResponse :: -- | 'httpStatus' Prelude.Int -> DeleteGroupResponse newDeleteGroupResponse pHttpStatus_ = DeleteGroupResponse' {httpStatus = pHttpStatus_} -- | The response's http status code. deleteGroupResponse_httpStatus :: Lens.Lens' DeleteGroupResponse Prelude.Int deleteGroupResponse_httpStatus = Lens.lens (\DeleteGroupResponse' {httpStatus} -> httpStatus) (\s@DeleteGroupResponse' {} a -> s {httpStatus = a} :: DeleteGroupResponse) instance Prelude.NFData DeleteGroupResponse where rnf DeleteGroupResponse' {..} = Prelude.rnf httpStatus