All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.burkard.cdk.pipelines.ECRSourceOptions.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.pipelines

@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object ECRSourceOptions {

  def apply(
    actionName: Option[String] = None,
    imageTag: Option[String] = None
  ): software.amazon.awscdk.pipelines.ECRSourceOptions =
    (new software.amazon.awscdk.pipelines.ECRSourceOptions.Builder)
      .actionName(actionName.orNull)
      .imageTag(imageTag.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy