{-# 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.IoT.DeleteBillingGroup -- 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 billing group. -- -- Requires permission to access the -- -- action. module Amazonka.IoT.DeleteBillingGroup ( -- * Creating a Request DeleteBillingGroup (..), newDeleteBillingGroup, -- * Request Lenses deleteBillingGroup_expectedVersion, deleteBillingGroup_billingGroupName, -- * Destructuring the Response DeleteBillingGroupResponse (..), newDeleteBillingGroupResponse, -- * Response Lenses deleteBillingGroupResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.IoT.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newDeleteBillingGroup' smart constructor. data DeleteBillingGroup = DeleteBillingGroup' { -- | The expected version of the billing group. If the version of the billing -- group does not match the expected version specified in the request, the -- @DeleteBillingGroup@ request is rejected with a -- @VersionConflictException@. expectedVersion :: Prelude.Maybe Prelude.Integer, -- | The name of the billing group. billingGroupName :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DeleteBillingGroup' 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: -- -- 'expectedVersion', 'deleteBillingGroup_expectedVersion' - The expected version of the billing group. If the version of the billing -- group does not match the expected version specified in the request, the -- @DeleteBillingGroup@ request is rejected with a -- @VersionConflictException@. -- -- 'billingGroupName', 'deleteBillingGroup_billingGroupName' - The name of the billing group. newDeleteBillingGroup :: -- | 'billingGroupName' Prelude.Text -> DeleteBillingGroup newDeleteBillingGroup pBillingGroupName_ = DeleteBillingGroup' { expectedVersion = Prelude.Nothing, billingGroupName = pBillingGroupName_ } -- | The expected version of the billing group. If the version of the billing -- group does not match the expected version specified in the request, the -- @DeleteBillingGroup@ request is rejected with a -- @VersionConflictException@. deleteBillingGroup_expectedVersion :: Lens.Lens' DeleteBillingGroup (Prelude.Maybe Prelude.Integer) deleteBillingGroup_expectedVersion = Lens.lens (\DeleteBillingGroup' {expectedVersion} -> expectedVersion) (\s@DeleteBillingGroup' {} a -> s {expectedVersion = a} :: DeleteBillingGroup) -- | The name of the billing group. deleteBillingGroup_billingGroupName :: Lens.Lens' DeleteBillingGroup Prelude.Text deleteBillingGroup_billingGroupName = Lens.lens (\DeleteBillingGroup' {billingGroupName} -> billingGroupName) (\s@DeleteBillingGroup' {} a -> s {billingGroupName = a} :: DeleteBillingGroup) instance Core.AWSRequest DeleteBillingGroup where type AWSResponse DeleteBillingGroup = DeleteBillingGroupResponse request overrides = Request.delete (overrides defaultService) response = Response.receiveEmpty ( \s h x -> DeleteBillingGroupResponse' Prelude.<$> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable DeleteBillingGroup where hashWithSalt _salt DeleteBillingGroup' {..} = _salt `Prelude.hashWithSalt` expectedVersion `Prelude.hashWithSalt` billingGroupName instance Prelude.NFData DeleteBillingGroup where rnf DeleteBillingGroup' {..} = Prelude.rnf expectedVersion `Prelude.seq` Prelude.rnf billingGroupName instance Data.ToHeaders DeleteBillingGroup where toHeaders = Prelude.const Prelude.mempty instance Data.ToPath DeleteBillingGroup where toPath DeleteBillingGroup' {..} = Prelude.mconcat ["/billing-groups/", Data.toBS billingGroupName] instance Data.ToQuery DeleteBillingGroup where toQuery DeleteBillingGroup' {..} = Prelude.mconcat ["expectedVersion" Data.=: expectedVersion] -- | /See:/ 'newDeleteBillingGroupResponse' smart constructor. data DeleteBillingGroupResponse = DeleteBillingGroupResponse' { -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DeleteBillingGroupResponse' 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', 'deleteBillingGroupResponse_httpStatus' - The response's http status code. newDeleteBillingGroupResponse :: -- | 'httpStatus' Prelude.Int -> DeleteBillingGroupResponse newDeleteBillingGroupResponse pHttpStatus_ = DeleteBillingGroupResponse' { httpStatus = pHttpStatus_ } -- | The response's http status code. deleteBillingGroupResponse_httpStatus :: Lens.Lens' DeleteBillingGroupResponse Prelude.Int deleteBillingGroupResponse_httpStatus = Lens.lens (\DeleteBillingGroupResponse' {httpStatus} -> httpStatus) (\s@DeleteBillingGroupResponse' {} a -> s {httpStatus = a} :: DeleteBillingGroupResponse) instance Prelude.NFData DeleteBillingGroupResponse where rnf DeleteBillingGroupResponse' {..} = Prelude.rnf httpStatus