aws-cdk-lib.aws_codepipeline_actions.JenkinsActionType

enum JenkinsActionType

LanguageType name
.NETAmazon.CDK.AWS.CodePipeline.Actions.JenkinsActionType
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscodepipelineactions#JenkinsActionType
Javasoftware.amazon.awscdk.services.codepipeline.actions.JenkinsActionType
Pythonaws_cdk.aws_codepipeline_actions.JenkinsActionType
TypeScript (source)aws-cdk-lib » aws_codepipeline_actions » JenkinsActionType

The type of the Jenkins Action that determines its CodePipeline Category - Build, or Test.

Note that a Jenkins provider, even if it has the same name, must be separately registered for each type.

Example

declare const jenkinsProvider: codepipeline_actions.JenkinsProvider;
const buildAction = new codepipeline_actions.JenkinsAction({
  actionName: 'JenkinsBuild',
  jenkinsProvider: jenkinsProvider,
  projectName: 'MyProject',
  type: codepipeline_actions.JenkinsActionType.BUILD,
});

Members

NameDescription
BUILDThe Action will have the Build Category.
TESTThe Action will have the Test Category.

BUILD

The Action will have the Build Category.


TEST

The Action will have the Test Category.