{-# 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.ServiceCatalogAppRegistry.DeleteAttributeGroup -- 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 attribute group, specified either by its attribute group ID -- or name. module Amazonka.ServiceCatalogAppRegistry.DeleteAttributeGroup ( -- * Creating a Request DeleteAttributeGroup (..), newDeleteAttributeGroup, -- * Request Lenses deleteAttributeGroup_attributeGroup, -- * Destructuring the Response DeleteAttributeGroupResponse (..), newDeleteAttributeGroupResponse, -- * Response Lenses deleteAttributeGroupResponse_attributeGroup, deleteAttributeGroupResponse_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.ServiceCatalogAppRegistry.Types -- | /See:/ 'newDeleteAttributeGroup' smart constructor. data DeleteAttributeGroup = DeleteAttributeGroup' { -- | The name or ID of the attribute group that holds the attributes to -- describe the application. attributeGroup :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DeleteAttributeGroup' 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: -- -- 'attributeGroup', 'deleteAttributeGroup_attributeGroup' - The name or ID of the attribute group that holds the attributes to -- describe the application. newDeleteAttributeGroup :: -- | 'attributeGroup' Prelude.Text -> DeleteAttributeGroup newDeleteAttributeGroup pAttributeGroup_ = DeleteAttributeGroup' { attributeGroup = pAttributeGroup_ } -- | The name or ID of the attribute group that holds the attributes to -- describe the application. deleteAttributeGroup_attributeGroup :: Lens.Lens' DeleteAttributeGroup Prelude.Text deleteAttributeGroup_attributeGroup = Lens.lens (\DeleteAttributeGroup' {attributeGroup} -> attributeGroup) (\s@DeleteAttributeGroup' {} a -> s {attributeGroup = a} :: DeleteAttributeGroup) instance Core.AWSRequest DeleteAttributeGroup where type AWSResponse DeleteAttributeGroup = DeleteAttributeGroupResponse request overrides = Request.delete (overrides defaultService) response = Response.receiveJSON ( \s h x -> DeleteAttributeGroupResponse' Prelude.<$> (x Data..?> "attributeGroup") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable DeleteAttributeGroup where hashWithSalt _salt DeleteAttributeGroup' {..} = _salt `Prelude.hashWithSalt` attributeGroup instance Prelude.NFData DeleteAttributeGroup where rnf DeleteAttributeGroup' {..} = Prelude.rnf attributeGroup instance Data.ToHeaders DeleteAttributeGroup where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToPath DeleteAttributeGroup where toPath DeleteAttributeGroup' {..} = Prelude.mconcat ["/attribute-groups/", Data.toBS attributeGroup] instance Data.ToQuery DeleteAttributeGroup where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newDeleteAttributeGroupResponse' smart constructor. data DeleteAttributeGroupResponse = DeleteAttributeGroupResponse' { -- | Information about the deleted attribute group. attributeGroup :: Prelude.Maybe AttributeGroupSummary, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DeleteAttributeGroupResponse' 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: -- -- 'attributeGroup', 'deleteAttributeGroupResponse_attributeGroup' - Information about the deleted attribute group. -- -- 'httpStatus', 'deleteAttributeGroupResponse_httpStatus' - The response's http status code. newDeleteAttributeGroupResponse :: -- | 'httpStatus' Prelude.Int -> DeleteAttributeGroupResponse newDeleteAttributeGroupResponse pHttpStatus_ = DeleteAttributeGroupResponse' { attributeGroup = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | Information about the deleted attribute group. deleteAttributeGroupResponse_attributeGroup :: Lens.Lens' DeleteAttributeGroupResponse (Prelude.Maybe AttributeGroupSummary) deleteAttributeGroupResponse_attributeGroup = Lens.lens (\DeleteAttributeGroupResponse' {attributeGroup} -> attributeGroup) (\s@DeleteAttributeGroupResponse' {} a -> s {attributeGroup = a} :: DeleteAttributeGroupResponse) -- | The response's http status code. deleteAttributeGroupResponse_httpStatus :: Lens.Lens' DeleteAttributeGroupResponse Prelude.Int deleteAttributeGroupResponse_httpStatus = Lens.lens (\DeleteAttributeGroupResponse' {httpStatus} -> httpStatus) (\s@DeleteAttributeGroupResponse' {} a -> s {httpStatus = a} :: DeleteAttributeGroupResponse) instance Prelude.NFData DeleteAttributeGroupResponse where rnf DeleteAttributeGroupResponse' {..} = Prelude.rnf attributeGroup `Prelude.seq` Prelude.rnf httpStatus