{-# 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.CodeBuild.StopBuildBatch -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Stops a running batch build. module Amazonka.CodeBuild.StopBuildBatch ( -- * Creating a Request StopBuildBatch (..), newStopBuildBatch, -- * Request Lenses stopBuildBatch_id, -- * Destructuring the Response StopBuildBatchResponse (..), newStopBuildBatchResponse, -- * Response Lenses stopBuildBatchResponse_buildBatch, stopBuildBatchResponse_httpStatus, ) where import Amazonka.CodeBuild.Types 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 -- | /See:/ 'newStopBuildBatch' smart constructor. data StopBuildBatch = StopBuildBatch' { -- | The identifier of the batch build to stop. id :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'StopBuildBatch' 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: -- -- 'id', 'stopBuildBatch_id' - The identifier of the batch build to stop. newStopBuildBatch :: -- | 'id' Prelude.Text -> StopBuildBatch newStopBuildBatch pId_ = StopBuildBatch' {id = pId_} -- | The identifier of the batch build to stop. stopBuildBatch_id :: Lens.Lens' StopBuildBatch Prelude.Text stopBuildBatch_id = Lens.lens (\StopBuildBatch' {id} -> id) (\s@StopBuildBatch' {} a -> s {id = a} :: StopBuildBatch) instance Core.AWSRequest StopBuildBatch where type AWSResponse StopBuildBatch = StopBuildBatchResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> StopBuildBatchResponse' Prelude.<$> (x Data..?> "buildBatch") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable StopBuildBatch where hashWithSalt _salt StopBuildBatch' {..} = _salt `Prelude.hashWithSalt` id instance Prelude.NFData StopBuildBatch where rnf StopBuildBatch' {..} = Prelude.rnf id instance Data.ToHeaders StopBuildBatch where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "CodeBuild_20161006.StopBuildBatch" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON StopBuildBatch where toJSON StopBuildBatch' {..} = Data.object (Prelude.catMaybes [Prelude.Just ("id" Data..= id)]) instance Data.ToPath StopBuildBatch where toPath = Prelude.const "/" instance Data.ToQuery StopBuildBatch where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newStopBuildBatchResponse' smart constructor. data StopBuildBatchResponse = StopBuildBatchResponse' { buildBatch :: Prelude.Maybe BuildBatch, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'StopBuildBatchResponse' 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: -- -- 'buildBatch', 'stopBuildBatchResponse_buildBatch' - Undocumented member. -- -- 'httpStatus', 'stopBuildBatchResponse_httpStatus' - The response's http status code. newStopBuildBatchResponse :: -- | 'httpStatus' Prelude.Int -> StopBuildBatchResponse newStopBuildBatchResponse pHttpStatus_ = StopBuildBatchResponse' { buildBatch = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | Undocumented member. stopBuildBatchResponse_buildBatch :: Lens.Lens' StopBuildBatchResponse (Prelude.Maybe BuildBatch) stopBuildBatchResponse_buildBatch = Lens.lens (\StopBuildBatchResponse' {buildBatch} -> buildBatch) (\s@StopBuildBatchResponse' {} a -> s {buildBatch = a} :: StopBuildBatchResponse) -- | The response's http status code. stopBuildBatchResponse_httpStatus :: Lens.Lens' StopBuildBatchResponse Prelude.Int stopBuildBatchResponse_httpStatus = Lens.lens (\StopBuildBatchResponse' {httpStatus} -> httpStatus) (\s@StopBuildBatchResponse' {} a -> s {httpStatus = a} :: StopBuildBatchResponse) instance Prelude.NFData StopBuildBatchResponse where rnf StopBuildBatchResponse' {..} = Prelude.rnf buildBatch `Prelude.seq` Prelude.rnf httpStatus