{-# 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.EMRServerless.StopApplication -- 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 specified application and releases initial capacity if -- configured. All scheduled and running jobs must be completed or -- cancelled before stopping an application. module Amazonka.EMRServerless.StopApplication ( -- * Creating a Request StopApplication (..), newStopApplication, -- * Request Lenses stopApplication_applicationId, -- * Destructuring the Response StopApplicationResponse (..), newStopApplicationResponse, -- * Response Lenses stopApplicationResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.EMRServerless.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newStopApplication' smart constructor. data StopApplication = StopApplication' { -- | The ID of the application to stop. applicationId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'StopApplication' 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: -- -- 'applicationId', 'stopApplication_applicationId' - The ID of the application to stop. newStopApplication :: -- | 'applicationId' Prelude.Text -> StopApplication newStopApplication pApplicationId_ = StopApplication' {applicationId = pApplicationId_} -- | The ID of the application to stop. stopApplication_applicationId :: Lens.Lens' StopApplication Prelude.Text stopApplication_applicationId = Lens.lens (\StopApplication' {applicationId} -> applicationId) (\s@StopApplication' {} a -> s {applicationId = a} :: StopApplication) instance Core.AWSRequest StopApplication where type AWSResponse StopApplication = StopApplicationResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveEmpty ( \s h x -> StopApplicationResponse' Prelude.<$> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable StopApplication where hashWithSalt _salt StopApplication' {..} = _salt `Prelude.hashWithSalt` applicationId instance Prelude.NFData StopApplication where rnf StopApplication' {..} = Prelude.rnf applicationId instance Data.ToHeaders StopApplication where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON StopApplication where toJSON = Prelude.const (Data.Object Prelude.mempty) instance Data.ToPath StopApplication where toPath StopApplication' {..} = Prelude.mconcat ["/applications/", Data.toBS applicationId, "/stop"] instance Data.ToQuery StopApplication where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newStopApplicationResponse' smart constructor. data StopApplicationResponse = StopApplicationResponse' { -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'StopApplicationResponse' 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', 'stopApplicationResponse_httpStatus' - The response's http status code. newStopApplicationResponse :: -- | 'httpStatus' Prelude.Int -> StopApplicationResponse newStopApplicationResponse pHttpStatus_ = StopApplicationResponse' {httpStatus = pHttpStatus_} -- | The response's http status code. stopApplicationResponse_httpStatus :: Lens.Lens' StopApplicationResponse Prelude.Int stopApplicationResponse_httpStatus = Lens.lens (\StopApplicationResponse' {httpStatus} -> httpStatus) (\s@StopApplicationResponse' {} a -> s {httpStatus = a} :: StopApplicationResponse) instance Prelude.NFData StopApplicationResponse where rnf StopApplicationResponse' {..} = Prelude.rnf httpStatus