{-# 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.StartApplication
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Starts a specified application and initializes initial capacity if
-- configured.
module Amazonka.EMRServerless.StartApplication
  ( -- * Creating a Request
    StartApplication (..),
    newStartApplication,

    -- * Request Lenses
    startApplication_applicationId,

    -- * Destructuring the Response
    StartApplicationResponse (..),
    newStartApplicationResponse,

    -- * Response Lenses
    startApplicationResponse_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:/ 'newStartApplication' smart constructor.
data StartApplication = StartApplication'
  { -- | The ID of the application to start.
    StartApplication -> Text
applicationId :: Prelude.Text
  }
  deriving (StartApplication -> StartApplication -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: StartApplication -> StartApplication -> Bool
$c/= :: StartApplication -> StartApplication -> Bool
== :: StartApplication -> StartApplication -> Bool
$c== :: StartApplication -> StartApplication -> Bool
Prelude.Eq, ReadPrec [StartApplication]
ReadPrec StartApplication
Int -> ReadS StartApplication
ReadS [StartApplication]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [StartApplication]
$creadListPrec :: ReadPrec [StartApplication]
readPrec :: ReadPrec StartApplication
$creadPrec :: ReadPrec StartApplication
readList :: ReadS [StartApplication]
$creadList :: ReadS [StartApplication]
readsPrec :: Int -> ReadS StartApplication
$creadsPrec :: Int -> ReadS StartApplication
Prelude.Read, Int -> StartApplication -> ShowS
[StartApplication] -> ShowS
StartApplication -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [StartApplication] -> ShowS
$cshowList :: [StartApplication] -> ShowS
show :: StartApplication -> String
$cshow :: StartApplication -> String
showsPrec :: Int -> StartApplication -> ShowS
$cshowsPrec :: Int -> StartApplication -> ShowS
Prelude.Show, forall x. Rep StartApplication x -> StartApplication
forall x. StartApplication -> Rep StartApplication x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep StartApplication x -> StartApplication
$cfrom :: forall x. StartApplication -> Rep StartApplication x
Prelude.Generic)

-- |
-- Create a value of 'StartApplication' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'applicationId', 'startApplication_applicationId' - The ID of the application to start.
newStartApplication ::
  -- | 'applicationId'
  Prelude.Text ->
  StartApplication
newStartApplication :: Text -> StartApplication
newStartApplication Text
pApplicationId_ =
  StartApplication' {$sel:applicationId:StartApplication' :: Text
applicationId = Text
pApplicationId_}

-- | The ID of the application to start.
startApplication_applicationId :: Lens.Lens' StartApplication Prelude.Text
startApplication_applicationId :: Lens' StartApplication Text
startApplication_applicationId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartApplication' {Text
applicationId :: Text
$sel:applicationId:StartApplication' :: StartApplication -> Text
applicationId} -> Text
applicationId) (\s :: StartApplication
s@StartApplication' {} Text
a -> StartApplication
s {$sel:applicationId:StartApplication' :: Text
applicationId = Text
a} :: StartApplication)

instance Core.AWSRequest StartApplication where
  type
    AWSResponse StartApplication =
      StartApplicationResponse
  request :: (Service -> Service)
-> StartApplication -> Request StartApplication
request Service -> Service
overrides =
    forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON (Service -> Service
overrides Service
defaultService)
  response :: forall (m :: * -> *).
MonadResource m =>
(ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy StartApplication
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse StartApplication)))
response =
    forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> () -> Either String (AWSResponse a))
-> (ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveEmpty
      ( \Int
s ResponseHeaders
h ()
x ->
          Int -> StartApplicationResponse
StartApplicationResponse'
            forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
      )

instance Prelude.Hashable StartApplication where
  hashWithSalt :: Int -> StartApplication -> Int
hashWithSalt Int
_salt StartApplication' {Text
applicationId :: Text
$sel:applicationId:StartApplication' :: StartApplication -> Text
..} =
    Int
_salt forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
applicationId

instance Prelude.NFData StartApplication where
  rnf :: StartApplication -> ()
rnf StartApplication' {Text
applicationId :: Text
$sel:applicationId:StartApplication' :: StartApplication -> Text
..} = forall a. NFData a => a -> ()
Prelude.rnf Text
applicationId

instance Data.ToHeaders StartApplication where
  toHeaders :: StartApplication -> ResponseHeaders
toHeaders =
    forall a b. a -> b -> a
Prelude.const
      ( forall a. Monoid a => [a] -> a
Prelude.mconcat
          [ HeaderName
"Content-Type"
              forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Data.=# ( ByteString
"application/x-amz-json-1.1" ::
                          Prelude.ByteString
                      )
          ]
      )

instance Data.ToJSON StartApplication where
  toJSON :: StartApplication -> Value
toJSON = forall a b. a -> b -> a
Prelude.const (Object -> Value
Data.Object forall a. Monoid a => a
Prelude.mempty)

instance Data.ToPath StartApplication where
  toPath :: StartApplication -> ByteString
toPath StartApplication' {Text
applicationId :: Text
$sel:applicationId:StartApplication' :: StartApplication -> Text
..} =
    forall a. Monoid a => [a] -> a
Prelude.mconcat
      [ByteString
"/applications/", forall a. ToByteString a => a -> ByteString
Data.toBS Text
applicationId, ByteString
"/start"]

instance Data.ToQuery StartApplication where
  toQuery :: StartApplication -> QueryString
toQuery = forall a b. a -> b -> a
Prelude.const forall a. Monoid a => a
Prelude.mempty

-- | /See:/ 'newStartApplicationResponse' smart constructor.
data StartApplicationResponse = StartApplicationResponse'
  { -- | The response's http status code.
    StartApplicationResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (StartApplicationResponse -> StartApplicationResponse -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: StartApplicationResponse -> StartApplicationResponse -> Bool
$c/= :: StartApplicationResponse -> StartApplicationResponse -> Bool
== :: StartApplicationResponse -> StartApplicationResponse -> Bool
$c== :: StartApplicationResponse -> StartApplicationResponse -> Bool
Prelude.Eq, ReadPrec [StartApplicationResponse]
ReadPrec StartApplicationResponse
Int -> ReadS StartApplicationResponse
ReadS [StartApplicationResponse]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [StartApplicationResponse]
$creadListPrec :: ReadPrec [StartApplicationResponse]
readPrec :: ReadPrec StartApplicationResponse
$creadPrec :: ReadPrec StartApplicationResponse
readList :: ReadS [StartApplicationResponse]
$creadList :: ReadS [StartApplicationResponse]
readsPrec :: Int -> ReadS StartApplicationResponse
$creadsPrec :: Int -> ReadS StartApplicationResponse
Prelude.Read, Int -> StartApplicationResponse -> ShowS
[StartApplicationResponse] -> ShowS
StartApplicationResponse -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [StartApplicationResponse] -> ShowS
$cshowList :: [StartApplicationResponse] -> ShowS
show :: StartApplicationResponse -> String
$cshow :: StartApplicationResponse -> String
showsPrec :: Int -> StartApplicationResponse -> ShowS
$cshowsPrec :: Int -> StartApplicationResponse -> ShowS
Prelude.Show, forall x.
Rep StartApplicationResponse x -> StartApplicationResponse
forall x.
StartApplicationResponse -> Rep StartApplicationResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep StartApplicationResponse x -> StartApplicationResponse
$cfrom :: forall x.
StartApplicationResponse -> Rep StartApplicationResponse x
Prelude.Generic)

-- |
-- Create a value of 'StartApplicationResponse' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'httpStatus', 'startApplicationResponse_httpStatus' - The response's http status code.
newStartApplicationResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  StartApplicationResponse
newStartApplicationResponse :: Int -> StartApplicationResponse
newStartApplicationResponse Int
pHttpStatus_ =
  StartApplicationResponse'
    { $sel:httpStatus:StartApplicationResponse' :: Int
httpStatus =
        Int
pHttpStatus_
    }

-- | The response's http status code.
startApplicationResponse_httpStatus :: Lens.Lens' StartApplicationResponse Prelude.Int
startApplicationResponse_httpStatus :: Lens' StartApplicationResponse Int
startApplicationResponse_httpStatus = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartApplicationResponse' {Int
httpStatus :: Int
$sel:httpStatus:StartApplicationResponse' :: StartApplicationResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: StartApplicationResponse
s@StartApplicationResponse' {} Int
a -> StartApplicationResponse
s {$sel:httpStatus:StartApplicationResponse' :: Int
httpStatus = Int
a} :: StartApplicationResponse)

instance Prelude.NFData StartApplicationResponse where
  rnf :: StartApplicationResponse -> ()
rnf StartApplicationResponse' {Int
httpStatus :: Int
$sel:httpStatus:StartApplicationResponse' :: StartApplicationResponse -> Int
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Int
httpStatus