A class representing Jenkins providers.
import { JenkinsProvider } from 'aws-cdk-lib/aws-codepipeline-actions';Or use the module namespace:
import * as codepipeline_actions from 'aws-cdk-lib/aws-codepipeline-actions';
// codepipeline_actions.JenkinsProviderConfiguration passed to the constructor as JenkinsProviderProps.
providerNameRequiredstringThe name of the Jenkins provider that you set in the AWS CodePipeline plugin configuration of your Jenkins project.
serverUrlRequiredstringThe base URL of your Jenkins server.
forBuildOptionalbooleanWhether to immediately register a Jenkins Provider for the build category. The Provider will always be registered if you create a `JenkinsAction`.
Default: false
forTestOptionalbooleanWhether to immediately register a Jenkins Provider for the test category. The Provider will always be registered if you create a `JenkinsTestAction`.
Default: false
versionOptionalstringThe version of your provider.
Default: '1'
Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.
Subscribe to Newsletteraws-codepipeline-actions