interface JenkinsProviderAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodePipeline.Actions.JenkinsProviderAttributes |
Java | software.amazon.awscdk.services.codepipeline.actions.JenkinsProviderAttributes |
Python | aws_cdk.aws_codepipeline_actions.JenkinsProviderAttributes |
TypeScript (source) | @aws-cdk/aws-codepipeline-actions » JenkinsProviderAttributes |
Properties for importing an existing Jenkins provider.
Example
const jenkinsProvider = codepipeline_actions.JenkinsProvider.fromJenkinsProviderAttributes(this, 'JenkinsProvider', {
providerName: 'MyJenkinsProvider',
serverUrl: 'http://my-jenkins.com:8080',
version: '2', // optional, default: '1'
});
Properties
| Name | Type | Description |
|---|---|---|
| provider | string | The name of the Jenkins provider that you set in the AWS CodePipeline plugin configuration of your Jenkins project. |
| server | string | The base URL of your Jenkins server. |
| version? | string | The version of your provider. |
providerName
Type:
string
The name of the Jenkins provider that you set in the AWS CodePipeline plugin configuration of your Jenkins project. Example
'MyJenkinsProvider'
serverUrl
Type:
string
The base URL of your Jenkins server. Example
'http://myjenkins.com:8080'
version?
Type:
string
(optional, default: '1')
The version of your provider.

.NET
Java
Python
TypeScript (