amazonka-codepipeline-2.0: gen/Amazonka/CodePipeline/EnableStageTransition.hs
{-# 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.CodePipeline.EnableStageTransition
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Enables artifacts in a pipeline to transition to a stage in a pipeline.
module Amazonka.CodePipeline.EnableStageTransition
( -- * Creating a Request
EnableStageTransition (..),
newEnableStageTransition,
-- * Request Lenses
enableStageTransition_pipelineName,
enableStageTransition_stageName,
enableStageTransition_transitionType,
-- * Destructuring the Response
EnableStageTransitionResponse (..),
newEnableStageTransitionResponse,
)
where
import Amazonka.CodePipeline.Types
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | Represents the input of an @EnableStageTransition@ action.
--
-- /See:/ 'newEnableStageTransition' smart constructor.
data EnableStageTransition = EnableStageTransition'
{ -- | The name of the pipeline in which you want to enable the flow of
-- artifacts from one stage to another.
pipelineName :: Prelude.Text,
-- | The name of the stage where you want to enable the transition of
-- artifacts, either into the stage (inbound) or from that stage to the
-- next stage (outbound).
stageName :: Prelude.Text,
-- | Specifies whether artifacts are allowed to enter the stage and be
-- processed by the actions in that stage (inbound) or whether already
-- processed artifacts are allowed to transition to the next stage
-- (outbound).
transitionType :: StageTransitionType
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'EnableStageTransition' 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', 'enableStageTransition_pipelineName' - The name of the pipeline in which you want to enable the flow of
-- artifacts from one stage to another.
--
-- 'stageName', 'enableStageTransition_stageName' - The name of the stage where you want to enable the transition of
-- artifacts, either into the stage (inbound) or from that stage to the
-- next stage (outbound).
--
-- 'transitionType', 'enableStageTransition_transitionType' - Specifies whether artifacts are allowed to enter the stage and be
-- processed by the actions in that stage (inbound) or whether already
-- processed artifacts are allowed to transition to the next stage
-- (outbound).
newEnableStageTransition ::
-- | 'pipelineName'
Prelude.Text ->
-- | 'stageName'
Prelude.Text ->
-- | 'transitionType'
StageTransitionType ->
EnableStageTransition
newEnableStageTransition
pPipelineName_
pStageName_
pTransitionType_ =
EnableStageTransition'
{ pipelineName =
pPipelineName_,
stageName = pStageName_,
transitionType = pTransitionType_
}
-- | The name of the pipeline in which you want to enable the flow of
-- artifacts from one stage to another.
enableStageTransition_pipelineName :: Lens.Lens' EnableStageTransition Prelude.Text
enableStageTransition_pipelineName = Lens.lens (\EnableStageTransition' {pipelineName} -> pipelineName) (\s@EnableStageTransition' {} a -> s {pipelineName = a} :: EnableStageTransition)
-- | The name of the stage where you want to enable the transition of
-- artifacts, either into the stage (inbound) or from that stage to the
-- next stage (outbound).
enableStageTransition_stageName :: Lens.Lens' EnableStageTransition Prelude.Text
enableStageTransition_stageName = Lens.lens (\EnableStageTransition' {stageName} -> stageName) (\s@EnableStageTransition' {} a -> s {stageName = a} :: EnableStageTransition)
-- | Specifies whether artifacts are allowed to enter the stage and be
-- processed by the actions in that stage (inbound) or whether already
-- processed artifacts are allowed to transition to the next stage
-- (outbound).
enableStageTransition_transitionType :: Lens.Lens' EnableStageTransition StageTransitionType
enableStageTransition_transitionType = Lens.lens (\EnableStageTransition' {transitionType} -> transitionType) (\s@EnableStageTransition' {} a -> s {transitionType = a} :: EnableStageTransition)
instance Core.AWSRequest EnableStageTransition where
type
AWSResponse EnableStageTransition =
EnableStageTransitionResponse
request overrides =
Request.postJSON (overrides defaultService)
response =
Response.receiveNull EnableStageTransitionResponse'
instance Prelude.Hashable EnableStageTransition where
hashWithSalt _salt EnableStageTransition' {..} =
_salt
`Prelude.hashWithSalt` pipelineName
`Prelude.hashWithSalt` stageName
`Prelude.hashWithSalt` transitionType
instance Prelude.NFData EnableStageTransition where
rnf EnableStageTransition' {..} =
Prelude.rnf pipelineName
`Prelude.seq` Prelude.rnf stageName
`Prelude.seq` Prelude.rnf transitionType
instance Data.ToHeaders EnableStageTransition where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "X-Amz-Target"
Data.=# ( "CodePipeline_20150709.EnableStageTransition" ::
Prelude.ByteString
),
"Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToJSON EnableStageTransition where
toJSON EnableStageTransition' {..} =
Data.object
( Prelude.catMaybes
[ Prelude.Just ("pipelineName" Data..= pipelineName),
Prelude.Just ("stageName" Data..= stageName),
Prelude.Just
("transitionType" Data..= transitionType)
]
)
instance Data.ToPath EnableStageTransition where
toPath = Prelude.const "/"
instance Data.ToQuery EnableStageTransition where
toQuery = Prelude.const Prelude.mempty
-- | /See:/ 'newEnableStageTransitionResponse' smart constructor.
data EnableStageTransitionResponse = EnableStageTransitionResponse'
{
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'EnableStageTransitionResponse' 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.
newEnableStageTransitionResponse ::
EnableStageTransitionResponse
newEnableStageTransitionResponse =
EnableStageTransitionResponse'
instance Prelude.NFData EnableStageTransitionResponse where
rnf _ = ()