![JAR search and dependency download from the Maven repository](/logo.png)
io.burkard.cdk.services.codepipeline.actions.GitHubSourceVariables.scala Maven / Gradle / Ivy
package io.burkard.cdk.services.codepipeline.actions
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object GitHubSourceVariables {
def apply(
repositoryName: String,
commitId: String,
authorDate: String,
committerDate: String,
commitUrl: String,
branchName: String,
commitMessage: String
): software.amazon.awscdk.services.codepipeline.actions.GitHubSourceVariables =
(new software.amazon.awscdk.services.codepipeline.actions.GitHubSourceVariables.Builder)
.repositoryName(repositoryName)
.commitId(commitId)
.authorDate(authorDate)
.committerDate(committerDate)
.commitUrl(commitUrl)
.branchName(branchName)
.commitMessage(commitMessage)
.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy