enum JenkinsActionType
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.CodePipeline.Actions.JenkinsActionType | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awscodepipelineactions#JenkinsActionType | 
|  Java | software.amazon.awscdk.services.codepipeline.actions.JenkinsActionType | 
|  Python | aws_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
| Name | Description | 
|---|---|
| BUILD | The Action will have the Build Category. | 
| TEST | The Action will have the Test Category. | 
BUILD
The Action will have the Build Category.
TEST
The Action will have the Test Category.
