aws-cdk-lib.aws_codepipeline.ActionCategory

enum ActionCategory

LanguageType name
.NETAmazon.CDK.AWS.CodePipeline.ActionCategory
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscodepipeline#ActionCategory
Javasoftware.amazon.awscdk.services.codepipeline.ActionCategory
Pythonaws_cdk.aws_codepipeline.ActionCategory
TypeScript (source)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

NameDescription
SOURCE
BUILD
TEST
APPROVAL
DEPLOY
INVOKE

SOURCE


BUILD


TEST


APPROVAL


DEPLOY


INVOKE