{-# 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.Pinpoint.CreateApp
-- 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)
--
-- Creates an application.
module Amazonka.Pinpoint.CreateApp
  ( -- * Creating a Request
    CreateApp (..),
    newCreateApp,

    -- * Request Lenses
    createApp_createApplicationRequest,

    -- * Destructuring the Response
    CreateAppResponse (..),
    newCreateAppResponse,

    -- * Response Lenses
    createAppResponse_httpStatus,
    createAppResponse_applicationResponse,
  )
where

import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import Amazonka.Pinpoint.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response

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

-- |
-- Create a value of 'CreateApp' 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:
--
-- 'createApplicationRequest', 'createApp_createApplicationRequest' - Undocumented member.
newCreateApp ::
  -- | 'createApplicationRequest'
  CreateApplicationRequest ->
  CreateApp
newCreateApp :: CreateApplicationRequest -> CreateApp
newCreateApp CreateApplicationRequest
pCreateApplicationRequest_ =
  CreateApp' :: CreateApplicationRequest -> CreateApp
CreateApp'
    { $sel:createApplicationRequest:CreateApp' :: CreateApplicationRequest
createApplicationRequest =
        CreateApplicationRequest
pCreateApplicationRequest_
    }

-- | Undocumented member.
createApp_createApplicationRequest :: Lens.Lens' CreateApp CreateApplicationRequest
createApp_createApplicationRequest :: (CreateApplicationRequest -> f CreateApplicationRequest)
-> CreateApp -> f CreateApp
createApp_createApplicationRequest = (CreateApp -> CreateApplicationRequest)
-> (CreateApp -> CreateApplicationRequest -> CreateApp)
-> Lens
     CreateApp
     CreateApp
     CreateApplicationRequest
     CreateApplicationRequest
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateApp' {CreateApplicationRequest
createApplicationRequest :: CreateApplicationRequest
$sel:createApplicationRequest:CreateApp' :: CreateApp -> CreateApplicationRequest
createApplicationRequest} -> CreateApplicationRequest
createApplicationRequest) (\s :: CreateApp
s@CreateApp' {} CreateApplicationRequest
a -> CreateApp
s {$sel:createApplicationRequest:CreateApp' :: CreateApplicationRequest
createApplicationRequest = CreateApplicationRequest
a} :: CreateApp)

instance Core.AWSRequest CreateApp where
  type AWSResponse CreateApp = CreateAppResponse
  request :: CreateApp -> Request CreateApp
request = Service -> CreateApp -> Request CreateApp
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
  response :: Logger
-> Service
-> Proxy CreateApp
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse CreateApp)))
response =
    (Int
 -> ResponseHeaders
 -> Object
 -> Either String (AWSResponse CreateApp))
-> Logger
-> Service
-> Proxy CreateApp
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse CreateApp)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> Object -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveJSON
      ( \Int
s ResponseHeaders
h Object
x ->
          Int -> ApplicationResponse -> CreateAppResponse
CreateAppResponse'
            (Int -> ApplicationResponse -> CreateAppResponse)
-> Either String Int
-> Either String (ApplicationResponse -> CreateAppResponse)
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))
            Either String (ApplicationResponse -> CreateAppResponse)
-> Either String ApplicationResponse
-> Either String CreateAppResponse
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object -> Either String ApplicationResponse
forall a. FromJSON a => Object -> Either String a
Core.eitherParseJSON Object
x)
      )

instance Prelude.Hashable CreateApp

instance Prelude.NFData CreateApp

instance Core.ToHeaders CreateApp where
  toHeaders :: CreateApp -> ResponseHeaders
toHeaders =
    ResponseHeaders -> CreateApp -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const
      ( [ResponseHeaders] -> ResponseHeaders
forall a. Monoid a => [a] -> a
Prelude.mconcat
          [ 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 CreateApp where
  toJSON :: CreateApp -> Value
toJSON CreateApp' {CreateApplicationRequest
createApplicationRequest :: CreateApplicationRequest
$sel:createApplicationRequest:CreateApp' :: CreateApp -> CreateApplicationRequest
..} =
    [Pair] -> Value
Core.object
      ( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
              ( Text
"CreateApplicationRequest"
                  Text -> CreateApplicationRequest -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= CreateApplicationRequest
createApplicationRequest
              )
          ]
      )

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

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

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

-- |
-- Create a value of 'CreateAppResponse' 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', 'createAppResponse_httpStatus' - The response's http status code.
--
-- 'applicationResponse', 'createAppResponse_applicationResponse' - Undocumented member.
newCreateAppResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  -- | 'applicationResponse'
  ApplicationResponse ->
  CreateAppResponse
newCreateAppResponse :: Int -> ApplicationResponse -> CreateAppResponse
newCreateAppResponse
  Int
pHttpStatus_
  ApplicationResponse
pApplicationResponse_ =
    CreateAppResponse' :: Int -> ApplicationResponse -> CreateAppResponse
CreateAppResponse'
      { $sel:httpStatus:CreateAppResponse' :: Int
httpStatus = Int
pHttpStatus_,
        $sel:applicationResponse:CreateAppResponse' :: ApplicationResponse
applicationResponse = ApplicationResponse
pApplicationResponse_
      }

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

-- | Undocumented member.
createAppResponse_applicationResponse :: Lens.Lens' CreateAppResponse ApplicationResponse
createAppResponse_applicationResponse :: (ApplicationResponse -> f ApplicationResponse)
-> CreateAppResponse -> f CreateAppResponse
createAppResponse_applicationResponse = (CreateAppResponse -> ApplicationResponse)
-> (CreateAppResponse -> ApplicationResponse -> CreateAppResponse)
-> Lens
     CreateAppResponse
     CreateAppResponse
     ApplicationResponse
     ApplicationResponse
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateAppResponse' {ApplicationResponse
applicationResponse :: ApplicationResponse
$sel:applicationResponse:CreateAppResponse' :: CreateAppResponse -> ApplicationResponse
applicationResponse} -> ApplicationResponse
applicationResponse) (\s :: CreateAppResponse
s@CreateAppResponse' {} ApplicationResponse
a -> CreateAppResponse
s {$sel:applicationResponse:CreateAppResponse' :: ApplicationResponse
applicationResponse = ApplicationResponse
a} :: CreateAppResponse)

instance Prelude.NFData CreateAppResponse