amazonka-codepipeline-2.0: Amazon CodePipeline SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.CodePipeline.Types.ActionExecutionOutput

Description

 
Synopsis

Documentation

data ActionExecutionOutput Source #

Output details listed for an action execution, such as the action execution result.

See: newActionExecutionOutput smart constructor.

Constructors

ActionExecutionOutput' 

Fields

Instances

Instances details
FromJSON ActionExecutionOutput Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionExecutionOutput

Generic ActionExecutionOutput Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionExecutionOutput

Associated Types

type Rep ActionExecutionOutput :: Type -> Type #

Read ActionExecutionOutput Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionExecutionOutput

Show ActionExecutionOutput Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionExecutionOutput

NFData ActionExecutionOutput Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionExecutionOutput

Methods

rnf :: ActionExecutionOutput -> () #

Eq ActionExecutionOutput Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionExecutionOutput

Hashable ActionExecutionOutput Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionExecutionOutput

type Rep ActionExecutionOutput Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionExecutionOutput

type Rep ActionExecutionOutput = D1 ('MetaData "ActionExecutionOutput" "Amazonka.CodePipeline.Types.ActionExecutionOutput" "amazonka-codepipeline-2.0-AHHPJTmnvhi1gPjRAFzjQE" 'False) (C1 ('MetaCons "ActionExecutionOutput'" 'PrefixI 'True) (S1 ('MetaSel ('Just "executionResult") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ActionExecutionResult)) :*: (S1 ('MetaSel ('Just "outputArtifacts") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ArtifactDetail])) :*: S1 ('MetaSel ('Just "outputVariables") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))))))

newActionExecutionOutput :: ActionExecutionOutput Source #

Create a value of ActionExecutionOutput 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:executionResult:ActionExecutionOutput', actionExecutionOutput_executionResult - Execution result information listed in the output details for an action execution.

$sel:outputArtifacts:ActionExecutionOutput', actionExecutionOutput_outputArtifacts - Details of output artifacts of the action that correspond to the action execution.

$sel:outputVariables:ActionExecutionOutput', actionExecutionOutput_outputVariables - The outputVariables field shows the key-value pairs that were output as part of that execution.

actionExecutionOutput_executionResult :: Lens' ActionExecutionOutput (Maybe ActionExecutionResult) Source #

Execution result information listed in the output details for an action execution.

actionExecutionOutput_outputArtifacts :: Lens' ActionExecutionOutput (Maybe [ArtifactDetail]) Source #

Details of output artifacts of the action that correspond to the action execution.

actionExecutionOutput_outputVariables :: Lens' ActionExecutionOutput (Maybe (HashMap Text Text)) Source #

The outputVariables field shows the key-value pairs that were output as part of that execution.