{-# 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.DeviceFarm.DeleteDevicePool -- 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 device pool given the pool ARN. Does not allow deletion of -- curated pools owned by the system. module Amazonka.DeviceFarm.DeleteDevicePool ( -- * Creating a Request DeleteDevicePool (..), newDeleteDevicePool, -- * Request Lenses deleteDevicePool_arn, -- * Destructuring the Response DeleteDevicePoolResponse (..), newDeleteDevicePoolResponse, -- * Response Lenses deleteDevicePoolResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.DeviceFarm.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | Represents a request to the delete device pool operation. -- -- /See:/ 'newDeleteDevicePool' smart constructor. data DeleteDevicePool = DeleteDevicePool' { -- | Represents the Amazon Resource Name (ARN) of the Device Farm device pool -- to delete. arn :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DeleteDevicePool' 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: -- -- 'arn', 'deleteDevicePool_arn' - Represents the Amazon Resource Name (ARN) of the Device Farm device pool -- to delete. newDeleteDevicePool :: -- | 'arn' Prelude.Text -> DeleteDevicePool newDeleteDevicePool pArn_ = DeleteDevicePool' {arn = pArn_} -- | Represents the Amazon Resource Name (ARN) of the Device Farm device pool -- to delete. deleteDevicePool_arn :: Lens.Lens' DeleteDevicePool Prelude.Text deleteDevicePool_arn = Lens.lens (\DeleteDevicePool' {arn} -> arn) (\s@DeleteDevicePool' {} a -> s {arn = a} :: DeleteDevicePool) instance Core.AWSRequest DeleteDevicePool where type AWSResponse DeleteDevicePool = DeleteDevicePoolResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveEmpty ( \s h x -> DeleteDevicePoolResponse' Prelude.<$> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable DeleteDevicePool where hashWithSalt _salt DeleteDevicePool' {..} = _salt `Prelude.hashWithSalt` arn instance Prelude.NFData DeleteDevicePool where rnf DeleteDevicePool' {..} = Prelude.rnf arn instance Data.ToHeaders DeleteDevicePool where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "DeviceFarm_20150623.DeleteDevicePool" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON DeleteDevicePool where toJSON DeleteDevicePool' {..} = Data.object ( Prelude.catMaybes [Prelude.Just ("arn" Data..= arn)] ) instance Data.ToPath DeleteDevicePool where toPath = Prelude.const "/" instance Data.ToQuery DeleteDevicePool where toQuery = Prelude.const Prelude.mempty -- | Represents the result of a delete device pool request. -- -- /See:/ 'newDeleteDevicePoolResponse' smart constructor. data DeleteDevicePoolResponse = DeleteDevicePoolResponse' { -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DeleteDevicePoolResponse' 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', 'deleteDevicePoolResponse_httpStatus' - The response's http status code. newDeleteDevicePoolResponse :: -- | 'httpStatus' Prelude.Int -> DeleteDevicePoolResponse newDeleteDevicePoolResponse pHttpStatus_ = DeleteDevicePoolResponse' { httpStatus = pHttpStatus_ } -- | The response's http status code. deleteDevicePoolResponse_httpStatus :: Lens.Lens' DeleteDevicePoolResponse Prelude.Int deleteDevicePoolResponse_httpStatus = Lens.lens (\DeleteDevicePoolResponse' {httpStatus} -> httpStatus) (\s@DeleteDevicePoolResponse' {} a -> s {httpStatus = a} :: DeleteDevicePoolResponse) instance Prelude.NFData DeleteDevicePoolResponse where rnf DeleteDevicePoolResponse' {..} = Prelude.rnf httpStatus