aws-cdk-lib.aws_codepipeline.ActionCategory
enum ActionCategory
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.CodePipeline.ActionCategory |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awscodepipeline#ActionCategory |
![]() | software.amazon.awscdk.services.codepipeline.ActionCategory |
![]() | aws_cdk.aws_codepipeline.ActionCategory |
![]() | aws-cdk-lib » 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 |