libZSservicesZSamazonka-codepipelineZSamazonka-codepipeline
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.CodePipeline.Types.StageExecution

Description

 
Synopsis

Documentation

data StageExecution Source #

Represents information about the run of a stage.

See: newStageExecution smart constructor.

Constructors

StageExecution' 

Fields

  • pipelineExecutionId :: Text

    The ID of the pipeline execution associated with the stage.

  • status :: StageExecutionStatus

    The status of the stage, or for a completed stage, the last status of the stage.

    A status of cancelled means that the pipeline’s definition was updated before the stage execution could be completed.

Instances

Instances details
Eq StageExecution Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.StageExecution

Read StageExecution Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.StageExecution

Show StageExecution Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.StageExecution

Generic StageExecution Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.StageExecution

Associated Types

type Rep StageExecution :: Type -> Type #

NFData StageExecution Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.StageExecution

Methods

rnf :: StageExecution -> () #

Hashable StageExecution Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.StageExecution

FromJSON StageExecution Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.StageExecution

type Rep StageExecution Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.StageExecution

type Rep StageExecution = D1 ('MetaData "StageExecution" "Amazonka.CodePipeline.Types.StageExecution" "libZSservicesZSamazonka-codepipelineZSamazonka-codepipeline" 'False) (C1 ('MetaCons "StageExecution'" 'PrefixI 'True) (S1 ('MetaSel ('Just "pipelineExecutionId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 StageExecutionStatus)))

newStageExecution Source #

Create a value of StageExecution with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:pipelineExecutionId:StageExecution', stageExecution_pipelineExecutionId - The ID of the pipeline execution associated with the stage.

$sel:status:StageExecution', stageExecution_status - The status of the stage, or for a completed stage, the last status of the stage.

A status of cancelled means that the pipeline’s definition was updated before the stage execution could be completed.

stageExecution_pipelineExecutionId :: Lens' StageExecution Text Source #

The ID of the pipeline execution associated with the stage.

stageExecution_status :: Lens' StageExecution StageExecutionStatus Source #

The status of the stage, or for a completed stage, the last status of the stage.

A status of cancelled means that the pipeline’s definition was updated before the stage execution could be completed.