@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.542Z") @Stability(value=Stable) public interface JenkinsProviderAttributes extends software.amazon.jsii.JsiiSerializable
Example:
// Example automatically generated from non-compiling source. May contain errors.
IJenkinsProvider jenkinsProvider = JenkinsProvider.fromJenkinsProviderAttributes(this, "JenkinsProvider", JenkinsProviderAttributes.builder()
.providerName("MyJenkinsProvider")
.serverUrl("http://my-jenkins.com:8080")
.version("2")
.build());
| Modifier and Type | Interface and Description |
|---|---|
static class |
JenkinsProviderAttributes.Builder
A builder for
JenkinsProviderAttributes |
static class |
JenkinsProviderAttributes.Jsii$Proxy
An implementation for
JenkinsProviderAttributes |
| Modifier and Type | Method and Description |
|---|---|
static JenkinsProviderAttributes.Builder |
builder() |
String |
getProviderName()
The name of the Jenkins provider that you set in the AWS CodePipeline plugin configuration of your Jenkins project.
|
String |
getServerUrl()
The base URL of your Jenkins server.
|
default String |
getVersion()
The version of your provider.
|
@Stability(value=Stable) @NotNull String getProviderName()
Example:
// Example automatically generated from non-compiling source. May contain errors. "MyJenkinsProvider";
@Stability(value=Stable) @NotNull String getServerUrl()
Example:
// Example automatically generated from non-compiling source. May contain errors. "http://myjenkins.com:8080";
@Stability(value=Stable) @Nullable default String getVersion()
Default: '1'
@Stability(value=Stable) static JenkinsProviderAttributes.Builder builder()
JenkinsProviderAttributes.Builder of JenkinsProviderAttributesCopyright © 2022. All rights reserved.