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

Description

 
Synopsis

Documentation

data ActionDeclaration Source #

Represents information about an action declaration.

See: newActionDeclaration smart constructor.

Constructors

ActionDeclaration' 

Fields

Instances

Instances details
FromJSON ActionDeclaration Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionDeclaration

ToJSON ActionDeclaration Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionDeclaration

Generic ActionDeclaration Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionDeclaration

Associated Types

type Rep ActionDeclaration :: Type -> Type #

Read ActionDeclaration Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionDeclaration

Show ActionDeclaration Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionDeclaration

NFData ActionDeclaration Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionDeclaration

Methods

rnf :: ActionDeclaration -> () #

Eq ActionDeclaration Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionDeclaration

Hashable ActionDeclaration Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionDeclaration

type Rep ActionDeclaration Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionDeclaration

newActionDeclaration Source #

Create a value of ActionDeclaration 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:configuration:ActionDeclaration', actionDeclaration_configuration - The action's configuration. These are key-value pairs that specify input values for an action. For more information, see Action Structure Requirements in CodePipeline. For the list of configuration properties for the AWS CloudFormation action type in CodePipeline, see Configuration Properties Reference in the AWS CloudFormation User Guide. For template snippets with examples, see Using Parameter Override Functions with CodePipeline Pipelines in the AWS CloudFormation User Guide.

The values can be represented in either JSON or YAML format. For example, the JSON configuration item format is as follows:

JSON:

"Configuration" : { Key : Value },

$sel:inputArtifacts:ActionDeclaration', actionDeclaration_inputArtifacts - The name or ID of the artifact consumed by the action, such as a test or build artifact.

$sel:namespace:ActionDeclaration', actionDeclaration_namespace - The variable namespace associated with the action. All variables produced as output by this action fall under this namespace.

$sel:outputArtifacts:ActionDeclaration', actionDeclaration_outputArtifacts - The name or ID of the result of the action declaration, such as a test or build artifact.

$sel:region:ActionDeclaration', actionDeclaration_region - The action declaration's AWS Region, such as us-east-1.

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

$sel:runOrder:ActionDeclaration', actionDeclaration_runOrder - The order in which actions are run.

ActionDeclaration, actionDeclaration_name - The action declaration's name.

$sel:actionTypeId:ActionDeclaration', actionDeclaration_actionTypeId - Specifies the action type and the provider of the action.

actionDeclaration_configuration :: Lens' ActionDeclaration (Maybe (HashMap Text Text)) Source #

The action's configuration. These are key-value pairs that specify input values for an action. For more information, see Action Structure Requirements in CodePipeline. For the list of configuration properties for the AWS CloudFormation action type in CodePipeline, see Configuration Properties Reference in the AWS CloudFormation User Guide. For template snippets with examples, see Using Parameter Override Functions with CodePipeline Pipelines in the AWS CloudFormation User Guide.

The values can be represented in either JSON or YAML format. For example, the JSON configuration item format is as follows:

JSON:

"Configuration" : { Key : Value },

actionDeclaration_inputArtifacts :: Lens' ActionDeclaration (Maybe [InputArtifact]) Source #

The name or ID of the artifact consumed by the action, such as a test or build artifact.

actionDeclaration_namespace :: Lens' ActionDeclaration (Maybe Text) Source #

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

actionDeclaration_outputArtifacts :: Lens' ActionDeclaration (Maybe [OutputArtifact]) Source #

The name or ID of the result of the action declaration, such as a test or build artifact.

actionDeclaration_region :: Lens' ActionDeclaration (Maybe Text) Source #

The action declaration's AWS Region, such as us-east-1.

actionDeclaration_roleArn :: Lens' ActionDeclaration (Maybe Text) Source #

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

actionDeclaration_runOrder :: Lens' ActionDeclaration (Maybe Natural) Source #

The order in which actions are run.

actionDeclaration_name :: Lens' ActionDeclaration Text Source #

The action declaration's name.

actionDeclaration_actionTypeId :: Lens' ActionDeclaration ActionTypeId Source #

Specifies the action type and the provider of the action.