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

Description

 
Synopsis

Documentation

data ActionExecutionInput Source #

Input information used for an action execution.

See: newActionExecutionInput smart constructor.

Constructors

ActionExecutionInput' 

Fields

Instances

Instances details
Eq ActionExecutionInput Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionExecutionInput

Read ActionExecutionInput Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionExecutionInput

Show ActionExecutionInput Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionExecutionInput

Generic ActionExecutionInput Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionExecutionInput

Associated Types

type Rep ActionExecutionInput :: Type -> Type #

NFData ActionExecutionInput Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionExecutionInput

Methods

rnf :: ActionExecutionInput -> () #

Hashable ActionExecutionInput Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionExecutionInput

FromJSON ActionExecutionInput Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionExecutionInput

type Rep ActionExecutionInput Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionExecutionInput

type Rep ActionExecutionInput = D1 ('MetaData "ActionExecutionInput" "Amazonka.CodePipeline.Types.ActionExecutionInput" "libZSservicesZSamazonka-codepipelineZSamazonka-codepipeline" 'False) (C1 ('MetaCons "ActionExecutionInput'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "namespace") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "resolvedConfiguration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: S1 ('MetaSel ('Just "region") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "configuration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: S1 ('MetaSel ('Just "actionTypeId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ActionTypeId))) :*: (S1 ('MetaSel ('Just "inputArtifacts") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ArtifactDetail])) :*: S1 ('MetaSel ('Just "roleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newActionExecutionInput :: ActionExecutionInput Source #

Create a value of ActionExecutionInput 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:namespace:ActionExecutionInput', actionExecutionInput_namespace - The variable namespace associated with the action. All variables produced as output by this action fall under this namespace.

$sel:resolvedConfiguration:ActionExecutionInput', actionExecutionInput_resolvedConfiguration - Configuration data for an action execution with all variable references replaced with their real values for the execution.

$sel:region:ActionExecutionInput', actionExecutionInput_region - The AWS Region for the action, such as us-east-1.

$sel:configuration:ActionExecutionInput', actionExecutionInput_configuration - Configuration data for an action execution.

$sel:actionTypeId:ActionExecutionInput', actionExecutionInput_actionTypeId - Undocumented member.

$sel:inputArtifacts:ActionExecutionInput', actionExecutionInput_inputArtifacts - Details of input artifacts of the action that correspond to the action execution.

$sel:roleArn:ActionExecutionInput', actionExecutionInput_roleArn - The ARN of the IAM service role that performs the declared action. This is assumed through the roleArn for the pipeline.

actionExecutionInput_namespace :: Lens' ActionExecutionInput (Maybe Text) Source #

The variable namespace associated with the action. All variables produced as output by this action fall under this namespace.

actionExecutionInput_resolvedConfiguration :: Lens' ActionExecutionInput (Maybe (HashMap Text Text)) Source #

Configuration data for an action execution with all variable references replaced with their real values for the execution.

actionExecutionInput_region :: Lens' ActionExecutionInput (Maybe Text) Source #

The AWS Region for the action, such as us-east-1.

actionExecutionInput_configuration :: Lens' ActionExecutionInput (Maybe (HashMap Text Text)) Source #

Configuration data for an action execution.

actionExecutionInput_inputArtifacts :: Lens' ActionExecutionInput (Maybe [ArtifactDetail]) Source #

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

actionExecutionInput_roleArn :: Lens' ActionExecutionInput (Maybe Text) Source #

The ARN of the IAM service role that performs the declared action. This is assumed through the roleArn for the pipeline.