{-# 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.IoTAnalytics.CreatePipeline
-- 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 a pipeline. A pipeline consumes messages from a channel and
-- allows you to process the messages before storing them in a data store.
-- You must specify both a @channel@ and a @datastore@ activity and,
-- optionally, as many as 23 additional activities in the
-- @pipelineActivities@ array.
module Amazonka.IoTAnalytics.CreatePipeline
  ( -- * Creating a Request
    CreatePipeline (..),
    newCreatePipeline,

    -- * Request Lenses
    createPipeline_tags,
    createPipeline_pipelineName,
    createPipeline_pipelineActivities,

    -- * Destructuring the Response
    CreatePipelineResponse (..),
    newCreatePipelineResponse,

    -- * Response Lenses
    createPipelineResponse_pipelineName,
    createPipelineResponse_pipelineArn,
    createPipelineResponse_httpStatus,
  )
where

import qualified Amazonka.Core as Core
import Amazonka.IoTAnalytics.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:/ 'newCreatePipeline' smart constructor.
data CreatePipeline = CreatePipeline'
  { -- | Metadata which can be used to manage the pipeline.
    CreatePipeline -> Maybe (NonEmpty Tag)
tags :: Prelude.Maybe (Prelude.NonEmpty Tag),
    -- | The name of the pipeline.
    CreatePipeline -> Text
pipelineName :: Prelude.Text,
    -- | A list of @PipelineActivity@ objects. Activities perform transformations
    -- on your messages, such as removing, renaming or adding message
    -- attributes; filtering messages based on attribute values; invoking your
    -- Lambda unctions on messages for advanced processing; or performing
    -- mathematical transformations to normalize device data.
    --
    -- The list can be 2-25 @PipelineActivity@ objects and must contain both a
    -- @channel@ and a @datastore@ activity. Each entry in the list must
    -- contain only one activity. For example:
    --
    -- @pipelineActivities = [ { \"channel\": { ... } }, { \"lambda\": { ... } }, ... ]@
    CreatePipeline -> NonEmpty PipelineActivity
pipelineActivities :: Prelude.NonEmpty PipelineActivity
  }
  deriving (CreatePipeline -> CreatePipeline -> Bool
(CreatePipeline -> CreatePipeline -> Bool)
-> (CreatePipeline -> CreatePipeline -> Bool) -> Eq CreatePipeline
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CreatePipeline -> CreatePipeline -> Bool
$c/= :: CreatePipeline -> CreatePipeline -> Bool
== :: CreatePipeline -> CreatePipeline -> Bool
$c== :: CreatePipeline -> CreatePipeline -> Bool
Prelude.Eq, ReadPrec [CreatePipeline]
ReadPrec CreatePipeline
Int -> ReadS CreatePipeline
ReadS [CreatePipeline]
(Int -> ReadS CreatePipeline)
-> ReadS [CreatePipeline]
-> ReadPrec CreatePipeline
-> ReadPrec [CreatePipeline]
-> Read CreatePipeline
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CreatePipeline]
$creadListPrec :: ReadPrec [CreatePipeline]
readPrec :: ReadPrec CreatePipeline
$creadPrec :: ReadPrec CreatePipeline
readList :: ReadS [CreatePipeline]
$creadList :: ReadS [CreatePipeline]
readsPrec :: Int -> ReadS CreatePipeline
$creadsPrec :: Int -> ReadS CreatePipeline
Prelude.Read, Int -> CreatePipeline -> ShowS
[CreatePipeline] -> ShowS
CreatePipeline -> String
(Int -> CreatePipeline -> ShowS)
-> (CreatePipeline -> String)
-> ([CreatePipeline] -> ShowS)
-> Show CreatePipeline
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CreatePipeline] -> ShowS
$cshowList :: [CreatePipeline] -> ShowS
show :: CreatePipeline -> String
$cshow :: CreatePipeline -> String
showsPrec :: Int -> CreatePipeline -> ShowS
$cshowsPrec :: Int -> CreatePipeline -> ShowS
Prelude.Show, (forall x. CreatePipeline -> Rep CreatePipeline x)
-> (forall x. Rep CreatePipeline x -> CreatePipeline)
-> Generic CreatePipeline
forall x. Rep CreatePipeline x -> CreatePipeline
forall x. CreatePipeline -> Rep CreatePipeline x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep CreatePipeline x -> CreatePipeline
$cfrom :: forall x. CreatePipeline -> Rep CreatePipeline x
Prelude.Generic)

-- |
-- Create a value of 'CreatePipeline' 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:
--
-- 'tags', 'createPipeline_tags' - Metadata which can be used to manage the pipeline.
--
-- 'pipelineName', 'createPipeline_pipelineName' - The name of the pipeline.
--
-- 'pipelineActivities', 'createPipeline_pipelineActivities' - A list of @PipelineActivity@ objects. Activities perform transformations
-- on your messages, such as removing, renaming or adding message
-- attributes; filtering messages based on attribute values; invoking your
-- Lambda unctions on messages for advanced processing; or performing
-- mathematical transformations to normalize device data.
--
-- The list can be 2-25 @PipelineActivity@ objects and must contain both a
-- @channel@ and a @datastore@ activity. Each entry in the list must
-- contain only one activity. For example:
--
-- @pipelineActivities = [ { \"channel\": { ... } }, { \"lambda\": { ... } }, ... ]@
newCreatePipeline ::
  -- | 'pipelineName'
  Prelude.Text ->
  -- | 'pipelineActivities'
  Prelude.NonEmpty PipelineActivity ->
  CreatePipeline
newCreatePipeline :: Text -> NonEmpty PipelineActivity -> CreatePipeline
newCreatePipeline Text
pPipelineName_ NonEmpty PipelineActivity
pPipelineActivities_ =
  CreatePipeline' :: Maybe (NonEmpty Tag)
-> Text -> NonEmpty PipelineActivity -> CreatePipeline
CreatePipeline'
    { $sel:tags:CreatePipeline' :: Maybe (NonEmpty Tag)
tags = Maybe (NonEmpty Tag)
forall a. Maybe a
Prelude.Nothing,
      $sel:pipelineName:CreatePipeline' :: Text
pipelineName = Text
pPipelineName_,
      $sel:pipelineActivities:CreatePipeline' :: NonEmpty PipelineActivity
pipelineActivities =
        Tagged
  (NonEmpty PipelineActivity) (Identity (NonEmpty PipelineActivity))
-> Tagged
     (NonEmpty PipelineActivity) (Identity (NonEmpty PipelineActivity))
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced (Tagged
   (NonEmpty PipelineActivity) (Identity (NonEmpty PipelineActivity))
 -> Tagged
      (NonEmpty PipelineActivity) (Identity (NonEmpty PipelineActivity)))
-> NonEmpty PipelineActivity -> NonEmpty PipelineActivity
forall t b. AReview t b -> b -> t
Lens.# NonEmpty PipelineActivity
pPipelineActivities_
    }

-- | Metadata which can be used to manage the pipeline.
createPipeline_tags :: Lens.Lens' CreatePipeline (Prelude.Maybe (Prelude.NonEmpty Tag))
createPipeline_tags :: (Maybe (NonEmpty Tag) -> f (Maybe (NonEmpty Tag)))
-> CreatePipeline -> f CreatePipeline
createPipeline_tags = (CreatePipeline -> Maybe (NonEmpty Tag))
-> (CreatePipeline -> Maybe (NonEmpty Tag) -> CreatePipeline)
-> Lens
     CreatePipeline
     CreatePipeline
     (Maybe (NonEmpty Tag))
     (Maybe (NonEmpty Tag))
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreatePipeline' {Maybe (NonEmpty Tag)
tags :: Maybe (NonEmpty Tag)
$sel:tags:CreatePipeline' :: CreatePipeline -> Maybe (NonEmpty Tag)
tags} -> Maybe (NonEmpty Tag)
tags) (\s :: CreatePipeline
s@CreatePipeline' {} Maybe (NonEmpty Tag)
a -> CreatePipeline
s {$sel:tags:CreatePipeline' :: Maybe (NonEmpty Tag)
tags = Maybe (NonEmpty Tag)
a} :: CreatePipeline) ((Maybe (NonEmpty Tag) -> f (Maybe (NonEmpty Tag)))
 -> CreatePipeline -> f CreatePipeline)
-> ((Maybe (NonEmpty Tag) -> f (Maybe (NonEmpty Tag)))
    -> Maybe (NonEmpty Tag) -> f (Maybe (NonEmpty Tag)))
-> (Maybe (NonEmpty Tag) -> f (Maybe (NonEmpty Tag)))
-> CreatePipeline
-> f CreatePipeline
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso (NonEmpty Tag) (NonEmpty Tag) (NonEmpty Tag) (NonEmpty Tag)
-> Iso
     (Maybe (NonEmpty Tag))
     (Maybe (NonEmpty Tag))
     (Maybe (NonEmpty Tag))
     (Maybe (NonEmpty Tag))
forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping AnIso (NonEmpty Tag) (NonEmpty Tag) (NonEmpty Tag) (NonEmpty Tag)
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | The name of the pipeline.
createPipeline_pipelineName :: Lens.Lens' CreatePipeline Prelude.Text
createPipeline_pipelineName :: (Text -> f Text) -> CreatePipeline -> f CreatePipeline
createPipeline_pipelineName = (CreatePipeline -> Text)
-> (CreatePipeline -> Text -> CreatePipeline)
-> Lens CreatePipeline CreatePipeline Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreatePipeline' {Text
pipelineName :: Text
$sel:pipelineName:CreatePipeline' :: CreatePipeline -> Text
pipelineName} -> Text
pipelineName) (\s :: CreatePipeline
s@CreatePipeline' {} Text
a -> CreatePipeline
s {$sel:pipelineName:CreatePipeline' :: Text
pipelineName = Text
a} :: CreatePipeline)

-- | A list of @PipelineActivity@ objects. Activities perform transformations
-- on your messages, such as removing, renaming or adding message
-- attributes; filtering messages based on attribute values; invoking your
-- Lambda unctions on messages for advanced processing; or performing
-- mathematical transformations to normalize device data.
--
-- The list can be 2-25 @PipelineActivity@ objects and must contain both a
-- @channel@ and a @datastore@ activity. Each entry in the list must
-- contain only one activity. For example:
--
-- @pipelineActivities = [ { \"channel\": { ... } }, { \"lambda\": { ... } }, ... ]@
createPipeline_pipelineActivities :: Lens.Lens' CreatePipeline (Prelude.NonEmpty PipelineActivity)
createPipeline_pipelineActivities :: (NonEmpty PipelineActivity -> f (NonEmpty PipelineActivity))
-> CreatePipeline -> f CreatePipeline
createPipeline_pipelineActivities = (CreatePipeline -> NonEmpty PipelineActivity)
-> (CreatePipeline -> NonEmpty PipelineActivity -> CreatePipeline)
-> Lens
     CreatePipeline
     CreatePipeline
     (NonEmpty PipelineActivity)
     (NonEmpty PipelineActivity)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreatePipeline' {NonEmpty PipelineActivity
pipelineActivities :: NonEmpty PipelineActivity
$sel:pipelineActivities:CreatePipeline' :: CreatePipeline -> NonEmpty PipelineActivity
pipelineActivities} -> NonEmpty PipelineActivity
pipelineActivities) (\s :: CreatePipeline
s@CreatePipeline' {} NonEmpty PipelineActivity
a -> CreatePipeline
s {$sel:pipelineActivities:CreatePipeline' :: NonEmpty PipelineActivity
pipelineActivities = NonEmpty PipelineActivity
a} :: CreatePipeline) ((NonEmpty PipelineActivity -> f (NonEmpty PipelineActivity))
 -> CreatePipeline -> f CreatePipeline)
-> ((NonEmpty PipelineActivity -> f (NonEmpty PipelineActivity))
    -> NonEmpty PipelineActivity -> f (NonEmpty PipelineActivity))
-> (NonEmpty PipelineActivity -> f (NonEmpty PipelineActivity))
-> CreatePipeline
-> f CreatePipeline
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. (NonEmpty PipelineActivity -> f (NonEmpty PipelineActivity))
-> NonEmpty PipelineActivity -> f (NonEmpty PipelineActivity)
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

instance Core.AWSRequest CreatePipeline where
  type
    AWSResponse CreatePipeline =
      CreatePipelineResponse
  request :: CreatePipeline -> Request CreatePipeline
request = Service -> CreatePipeline -> Request CreatePipeline
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
  response :: Logger
-> Service
-> Proxy CreatePipeline
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse CreatePipeline)))
response =
    (Int
 -> ResponseHeaders
 -> Object
 -> Either String (AWSResponse CreatePipeline))
-> Logger
-> Service
-> Proxy CreatePipeline
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse CreatePipeline)))
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 ->
          Maybe Text -> Maybe Text -> Int -> CreatePipelineResponse
CreatePipelineResponse'
            (Maybe Text -> Maybe Text -> Int -> CreatePipelineResponse)
-> Either String (Maybe Text)
-> Either String (Maybe Text -> Int -> CreatePipelineResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Either String (Maybe Text)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"pipelineName")
            Either String (Maybe Text -> Int -> CreatePipelineResponse)
-> Either String (Maybe Text)
-> Either String (Int -> CreatePipelineResponse)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Either String (Maybe Text)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"pipelineArn")
            Either String (Int -> CreatePipelineResponse)
-> Either String Int -> Either String CreatePipelineResponse
forall (f :: * -> *) a b. Applicative f => 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 CreatePipeline

instance Prelude.NFData CreatePipeline

instance Core.ToHeaders CreatePipeline where
  toHeaders :: CreatePipeline -> ResponseHeaders
toHeaders = ResponseHeaders -> CreatePipeline -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const ResponseHeaders
forall a. Monoid a => a
Prelude.mempty

instance Core.ToJSON CreatePipeline where
  toJSON :: CreatePipeline -> Value
toJSON CreatePipeline' {Maybe (NonEmpty Tag)
NonEmpty PipelineActivity
Text
pipelineActivities :: NonEmpty PipelineActivity
pipelineName :: Text
tags :: Maybe (NonEmpty Tag)
$sel:pipelineActivities:CreatePipeline' :: CreatePipeline -> NonEmpty PipelineActivity
$sel:pipelineName:CreatePipeline' :: CreatePipeline -> Text
$sel:tags:CreatePipeline' :: CreatePipeline -> Maybe (NonEmpty Tag)
..} =
    [Pair] -> Value
Core.object
      ( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Text
"tags" Text -> NonEmpty Tag -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (NonEmpty Tag -> Pair) -> Maybe (NonEmpty Tag) -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (NonEmpty Tag)
tags,
            Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"pipelineName" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
pipelineName),
            Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
              (Text
"pipelineActivities" Text -> NonEmpty PipelineActivity -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= NonEmpty PipelineActivity
pipelineActivities)
          ]
      )

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

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

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

-- |
-- Create a value of 'CreatePipelineResponse' 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:
--
-- 'pipelineName', 'createPipelineResponse_pipelineName' - The name of the pipeline.
--
-- 'pipelineArn', 'createPipelineResponse_pipelineArn' - The ARN of the pipeline.
--
-- 'httpStatus', 'createPipelineResponse_httpStatus' - The response's http status code.
newCreatePipelineResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  CreatePipelineResponse
newCreatePipelineResponse :: Int -> CreatePipelineResponse
newCreatePipelineResponse Int
pHttpStatus_ =
  CreatePipelineResponse' :: Maybe Text -> Maybe Text -> Int -> CreatePipelineResponse
CreatePipelineResponse'
    { $sel:pipelineName:CreatePipelineResponse' :: Maybe Text
pipelineName =
        Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:pipelineArn:CreatePipelineResponse' :: Maybe Text
pipelineArn = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:CreatePipelineResponse' :: Int
httpStatus = Int
pHttpStatus_
    }

-- | The name of the pipeline.
createPipelineResponse_pipelineName :: Lens.Lens' CreatePipelineResponse (Prelude.Maybe Prelude.Text)
createPipelineResponse_pipelineName :: (Maybe Text -> f (Maybe Text))
-> CreatePipelineResponse -> f CreatePipelineResponse
createPipelineResponse_pipelineName = (CreatePipelineResponse -> Maybe Text)
-> (CreatePipelineResponse -> Maybe Text -> CreatePipelineResponse)
-> Lens
     CreatePipelineResponse
     CreatePipelineResponse
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreatePipelineResponse' {Maybe Text
pipelineName :: Maybe Text
$sel:pipelineName:CreatePipelineResponse' :: CreatePipelineResponse -> Maybe Text
pipelineName} -> Maybe Text
pipelineName) (\s :: CreatePipelineResponse
s@CreatePipelineResponse' {} Maybe Text
a -> CreatePipelineResponse
s {$sel:pipelineName:CreatePipelineResponse' :: Maybe Text
pipelineName = Maybe Text
a} :: CreatePipelineResponse)

-- | The ARN of the pipeline.
createPipelineResponse_pipelineArn :: Lens.Lens' CreatePipelineResponse (Prelude.Maybe Prelude.Text)
createPipelineResponse_pipelineArn :: (Maybe Text -> f (Maybe Text))
-> CreatePipelineResponse -> f CreatePipelineResponse
createPipelineResponse_pipelineArn = (CreatePipelineResponse -> Maybe Text)
-> (CreatePipelineResponse -> Maybe Text -> CreatePipelineResponse)
-> Lens
     CreatePipelineResponse
     CreatePipelineResponse
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreatePipelineResponse' {Maybe Text
pipelineArn :: Maybe Text
$sel:pipelineArn:CreatePipelineResponse' :: CreatePipelineResponse -> Maybe Text
pipelineArn} -> Maybe Text
pipelineArn) (\s :: CreatePipelineResponse
s@CreatePipelineResponse' {} Maybe Text
a -> CreatePipelineResponse
s {$sel:pipelineArn:CreatePipelineResponse' :: Maybe Text
pipelineArn = Maybe Text
a} :: CreatePipelineResponse)

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

instance Prelude.NFData CreatePipelineResponse