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.ExecutionDetails

Description

 
Synopsis

Documentation

data ExecutionDetails Source #

The details of the actions taken and results produced on an artifact as it passes through stages in the pipeline.

See: newExecutionDetails smart constructor.

Constructors

ExecutionDetails' 

Fields

Instances

Instances details
Eq ExecutionDetails Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ExecutionDetails

Read ExecutionDetails Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ExecutionDetails

Show ExecutionDetails Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ExecutionDetails

Generic ExecutionDetails Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ExecutionDetails

Associated Types

type Rep ExecutionDetails :: Type -> Type #

NFData ExecutionDetails Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ExecutionDetails

Methods

rnf :: ExecutionDetails -> () #

Hashable ExecutionDetails Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ExecutionDetails

ToJSON ExecutionDetails Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ExecutionDetails

type Rep ExecutionDetails Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ExecutionDetails

type Rep ExecutionDetails = D1 ('MetaData "ExecutionDetails" "Amazonka.CodePipeline.Types.ExecutionDetails" "libZSservicesZSamazonka-codepipelineZSamazonka-codepipeline" 'False) (C1 ('MetaCons "ExecutionDetails'" 'PrefixI 'True) (S1 ('MetaSel ('Just "summary") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "externalExecutionId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "percentComplete") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))

newExecutionDetails :: ExecutionDetails Source #

Create a value of ExecutionDetails 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:summary:ExecutionDetails', executionDetails_summary - The summary of the current status of the actions.

$sel:externalExecutionId:ExecutionDetails', executionDetails_externalExecutionId - The system-generated unique ID of this action used to identify this job worker in any external systems, such as AWS CodeDeploy.

$sel:percentComplete:ExecutionDetails', executionDetails_percentComplete - The percentage of work completed on the action, represented on a scale of 0 to 100 percent.

executionDetails_summary :: Lens' ExecutionDetails (Maybe Text) Source #

The summary of the current status of the actions.

executionDetails_externalExecutionId :: Lens' ExecutionDetails (Maybe Text) Source #

The system-generated unique ID of this action used to identify this job worker in any external systems, such as AWS CodeDeploy.

executionDetails_percentComplete :: Lens' ExecutionDetails (Maybe Natural) Source #

The percentage of work completed on the action, represented on a scale of 0 to 100 percent.