enum ActionCategory
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodePipeline.ActionCategory |
Java | software.amazon.awscdk.services.codepipeline.ActionCategory |
Python | aws_cdk.aws_codepipeline.ActionCategory |
TypeScript (source) | @aws-cdk/aws-codepipeline » ActionCategory |
Example
// MyAction is some action type that produces variables, like EcrSourceAction
const myAction = new MyAction({
// ...
actionName: 'myAction',
});
new OtherAction({
// ...
config: myAction.variables.myVariable,
actionName: 'otherAction',
});
Members
| Name | Description |
|---|---|
| SOURCE | |
| BUILD | |
| TEST | |
| APPROVAL | |
| DEPLOY | |
| INVOKE |

.NET
Java
Python
TypeScript (