{-# 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.KinesisAnalyticsV2.StartApplication
-- Copyright   : (c) 2013-2021 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Starts the specified Kinesis Data Analytics application. After creating
-- an application, you must exclusively call this operation to start your
-- application.
module Amazonka.KinesisAnalyticsV2.StartApplication
  ( -- * Creating a Request
    StartApplication (..),
    newStartApplication,

    -- * Request Lenses
    startApplication_runConfiguration,
    startApplication_applicationName,

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

    -- * Response Lenses
    startApplicationResponse_httpStatus,
  )
where

import qualified Amazonka.Core as Core
import Amazonka.KinesisAnalyticsV2.Types
import qualified Amazonka.Lens as Lens
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'
  { -- | Identifies the run configuration (start parameters) of a Kinesis Data
    -- Analytics application.
    StartApplication -> Maybe RunConfiguration
runConfiguration :: Prelude.Maybe RunConfiguration,
    -- | The name of the application.
    StartApplication -> Text
applicationName :: Prelude.Text
  }
  deriving (StartApplication -> StartApplication -> Bool
(StartApplication -> StartApplication -> Bool)
-> (StartApplication -> StartApplication -> Bool)
-> Eq StartApplication
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]
(Int -> ReadS StartApplication)
-> ReadS [StartApplication]
-> ReadPrec StartApplication
-> ReadPrec [StartApplication]
-> Read 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
(Int -> StartApplication -> ShowS)
-> (StartApplication -> String)
-> ([StartApplication] -> ShowS)
-> Show StartApplication
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. StartApplication -> Rep StartApplication x)
-> (forall x. Rep StartApplication x -> StartApplication)
-> Generic StartApplication
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:
--
-- 'runConfiguration', 'startApplication_runConfiguration' - Identifies the run configuration (start parameters) of a Kinesis Data
-- Analytics application.
--
-- 'applicationName', 'startApplication_applicationName' - The name of the application.
newStartApplication ::
  -- | 'applicationName'
  Prelude.Text ->
  StartApplication
newStartApplication :: Text -> StartApplication
newStartApplication Text
pApplicationName_ =
  StartApplication' :: Maybe RunConfiguration -> Text -> StartApplication
StartApplication'
    { $sel:runConfiguration:StartApplication' :: Maybe RunConfiguration
runConfiguration =
        Maybe RunConfiguration
forall a. Maybe a
Prelude.Nothing,
      $sel:applicationName:StartApplication' :: Text
applicationName = Text
pApplicationName_
    }

-- | Identifies the run configuration (start parameters) of a Kinesis Data
-- Analytics application.
startApplication_runConfiguration :: Lens.Lens' StartApplication (Prelude.Maybe RunConfiguration)
startApplication_runConfiguration :: (Maybe RunConfiguration -> f (Maybe RunConfiguration))
-> StartApplication -> f StartApplication
startApplication_runConfiguration = (StartApplication -> Maybe RunConfiguration)
-> (StartApplication -> Maybe RunConfiguration -> StartApplication)
-> Lens
     StartApplication
     StartApplication
     (Maybe RunConfiguration)
     (Maybe RunConfiguration)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartApplication' {Maybe RunConfiguration
runConfiguration :: Maybe RunConfiguration
$sel:runConfiguration:StartApplication' :: StartApplication -> Maybe RunConfiguration
runConfiguration} -> Maybe RunConfiguration
runConfiguration) (\s :: StartApplication
s@StartApplication' {} Maybe RunConfiguration
a -> StartApplication
s {$sel:runConfiguration:StartApplication' :: Maybe RunConfiguration
runConfiguration = Maybe RunConfiguration
a} :: StartApplication)

-- | The name of the application.
startApplication_applicationName :: Lens.Lens' StartApplication Prelude.Text
startApplication_applicationName :: (Text -> f Text) -> StartApplication -> f StartApplication
startApplication_applicationName = (StartApplication -> Text)
-> (StartApplication -> Text -> StartApplication)
-> Lens StartApplication StartApplication Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartApplication' {Text
applicationName :: Text
$sel:applicationName:StartApplication' :: StartApplication -> Text
applicationName} -> Text
applicationName) (\s :: StartApplication
s@StartApplication' {} Text
a -> StartApplication
s {$sel:applicationName:StartApplication' :: Text
applicationName = Text
a} :: StartApplication)

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

instance Prelude.Hashable StartApplication

instance Prelude.NFData StartApplication

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

instance Core.ToJSON StartApplication where
  toJSON :: StartApplication -> Value
toJSON StartApplication' {Maybe RunConfiguration
Text
applicationName :: Text
runConfiguration :: Maybe RunConfiguration
$sel:applicationName:StartApplication' :: StartApplication -> Text
$sel:runConfiguration:StartApplication' :: StartApplication -> Maybe RunConfiguration
..} =
    [Pair] -> Value
Core.object
      ( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Text
"RunConfiguration" Text -> RunConfiguration -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=)
              (RunConfiguration -> Pair) -> Maybe RunConfiguration -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe RunConfiguration
runConfiguration,
            Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
              (Text
"ApplicationName" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
applicationName)
          ]
      )

instance Core.ToPath StartApplication where
  toPath :: StartApplication -> ByteString
toPath = ByteString -> StartApplication -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"

instance Core.ToQuery StartApplication where
  toQuery :: StartApplication -> QueryString
toQuery = QueryString -> StartApplication -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
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
(StartApplicationResponse -> StartApplicationResponse -> Bool)
-> (StartApplicationResponse -> StartApplicationResponse -> Bool)
-> Eq StartApplicationResponse
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]
(Int -> ReadS StartApplicationResponse)
-> ReadS [StartApplicationResponse]
-> ReadPrec StartApplicationResponse
-> ReadPrec [StartApplicationResponse]
-> Read 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
(Int -> StartApplicationResponse -> ShowS)
-> (StartApplicationResponse -> String)
-> ([StartApplicationResponse] -> ShowS)
-> Show StartApplicationResponse
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.
 StartApplicationResponse -> Rep StartApplicationResponse x)
-> (forall x.
    Rep StartApplicationResponse x -> StartApplicationResponse)
-> Generic StartApplicationResponse
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' :: Int -> StartApplicationResponse
StartApplicationResponse'
    { $sel:httpStatus:StartApplicationResponse' :: Int
httpStatus =
        Int
pHttpStatus_
    }

-- | The response's http status code.
startApplicationResponse_httpStatus :: Lens.Lens' StartApplicationResponse Prelude.Int
startApplicationResponse_httpStatus :: (Int -> f Int)
-> StartApplicationResponse -> f StartApplicationResponse
startApplicationResponse_httpStatus = (StartApplicationResponse -> Int)
-> (StartApplicationResponse -> Int -> StartApplicationResponse)
-> Lens StartApplicationResponse StartApplicationResponse Int Int
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