interface IJenkinsProvider
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodePipeline.Actions.IJenkinsProvider |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscodepipelineactions#IJenkinsProvider |
Java | software.amazon.awscdk.services.codepipeline.actions.IJenkinsProvider |
Python | aws_cdk.aws_codepipeline_actions.IJenkinsProvider |
TypeScript (source) | aws-cdk-lib » aws_codepipeline_actions » IJenkinsProvider |
Implements
IDependable, IConstruct
Implemented by
Jenkins
Obtainable from
Jenkins.fromJenkinsProviderAttributes()
A Jenkins provider.
If you want to create a new Jenkins provider managed alongside your CDK code,
instantiate the JenkinsProvider class directly.
If you want to reference an already registered provider,
use the JenkinsProvider#fromJenkinsProviderAttributes method.
Properties
| Name | Type | Description |
|---|---|---|
| node | Node | The tree node. |
| provider | string | |
| server | string | |
| version | string |
node
Type:
Node
The tree node.
providerName
Type:
string
serverUrl
Type:
string
version
Type:
string
Methods
| Name | Description |
|---|---|
| with(...mixins) | Applies one or more mixins to this construct. |
with(...mixins)
public with(...mixins: IMixin[]): IConstruct
Parameters
- mixins
IMixin— The mixins to apply.
Returns
Applies one or more mixins to this construct.
Mixins are applied in order. The list of constructs is captured at the start of the call, so constructs added by a mixin will not be visited.

.NET
Go
Java
Python
TypeScript (