interface ActionDeclarationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodePipeline.Mixins.CfnPipelinePropsMixin.ActionDeclarationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodepipeline/mixins#CfnPipelinePropsMixin_ActionDeclarationProperty |
Java | software.amazon.awscdk.mixins.preview.services.codepipeline.mixins.CfnPipelinePropsMixin.ActionDeclarationProperty |
Python | aws_cdk.mixins_preview.aws_codepipeline.mixins.CfnPipelinePropsMixin.ActionDeclarationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_codepipeline » mixins » CfnPipelinePropsMixin » ActionDeclarationProperty |
Represents information about an action declaration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as codepipeline_mixins } from '@aws-cdk/mixins-preview/aws-codepipeline';
declare const configuration: any;
const actionDeclarationProperty: codepipeline_mixins.CfnPipelinePropsMixin.ActionDeclarationProperty = {
actionTypeId: {
category: 'category',
owner: 'owner',
provider: 'provider',
version: 'version',
},
commands: ['commands'],
configuration: configuration,
environmentVariables: [{
name: 'name',
type: 'type',
value: 'value',
}],
inputArtifacts: [{
name: 'name',
}],
name: 'name',
namespace: 'namespace',
outputArtifacts: [{
files: ['files'],
name: 'name',
}],
outputVariables: ['outputVariables'],
region: 'region',
roleArn: 'roleArn',
runOrder: 123,
timeoutInMinutes: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| action | IResolvable | Action | Specifies the action type and the provider of the action. |
| commands? | string[] | The shell commands to run with your compute action in CodePipeline. |
| configuration? | any | The action's configuration. |
| environment | IResolvable | (IResolvable | Environment)[] | The environment variables for the action. |
| input | IResolvable | (IResolvable | Input)[] | The name or ID of the artifact consumed by the action, such as a test or build artifact. |
| name? | string | The action declaration's name. |
| namespace? | string | The variable namespace associated with the action. |
| output | IResolvable | (IResolvable | Output)[] | The name or ID of the result of the action declaration, such as a test or build artifact. |
| output | string[] | The list of variables that are to be exported from the compute action. |
| region? | string | The action declaration's AWS Region, such as us-east-1. |
| role | string | The ARN of the IAM service role that performs the declared action. |
| run | number | The order in which actions are run. |
| timeout | number | A timeout duration in minutes that can be applied against the ActionType’s default timeout value specified in Quotas for AWS CodePipeline . This attribute is available only to the manual approval ActionType. |
actionTypeId?
Type:
IResolvable | Action
(optional)
Specifies the action type and the provider of the action.
commands?
Type:
string[]
(optional)
The shell commands to run with your compute action in CodePipeline.
All commands are supported except multi-line formats. While CodeBuild logs and permissions are used, you do not need to create any resources in CodeBuild.
Using compute time for this action will incur separate charges in AWS CodeBuild .
configuration?
Type:
any
(optional)
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 },
environmentVariables?
Type:
IResolvable | (IResolvable | Environment)[]
(optional)
The environment variables for the action.
inputArtifacts?
Type:
IResolvable | (IResolvable | Input)[]
(optional)
The name or ID of the artifact consumed by the action, such as a test or build artifact.
While the field is not a required parameter, most actions have an action configuration that requires a specified quantity of input artifacts. To refer to the action configuration specification by action provider, see the Action structure reference in the AWS CodePipeline User Guide .
For a CodeBuild action with multiple input artifacts, one of your input sources must be designated the PrimarySource. For more information, see the CodeBuild action reference page in the AWS CodePipeline User Guide .
name?
Type:
string
(optional)
The action declaration's name.
namespace?
Type:
string
(optional)
The variable namespace associated with the action.
All variables produced as output by this action fall under this namespace.
outputArtifacts?
Type:
IResolvable | (IResolvable | Output)[]
(optional)
The name or ID of the result of the action declaration, such as a test or build artifact.
While the field is not a required parameter, most actions have an action configuration that requires a specified quantity of output artifacts. To refer to the action configuration specification by action provider, see the Action structure reference in the AWS CodePipeline User Guide .
outputVariables?
Type:
string[]
(optional)
The list of variables that are to be exported from the compute action.
This is specifically CodeBuild environment variables as used for that action.
region?
Type:
string
(optional)
The action declaration's AWS Region, such as us-east-1.
roleArn?
Type:
string
(optional)
The ARN of the IAM service role that performs the declared action.
This is assumed through the roleArn for the pipeline.
runOrder?
Type:
number
(optional)
The order in which actions are run.
timeoutInMinutes?
Type:
number
(optional)
A timeout duration in minutes that can be applied against the ActionType’s default timeout value specified in Quotas for AWS CodePipeline . This attribute is available only to the manual approval ActionType.

.NET
Go
Java
Python
TypeScript