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

io.burkard.cdk.services.codebuild.S3SourceProps.scala Maven / Gradle / Ivy

There is a newer version: 0.5.0
Show newest version
package io.burkard.cdk.services.codebuild

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

  def apply(
    path: String,
    bucket: software.amazon.awscdk.services.s3.IBucket,
    identifier: Option[String] = None,
    version: Option[String] = None
  ): software.amazon.awscdk.services.codebuild.S3SourceProps =
    (new software.amazon.awscdk.services.codebuild.S3SourceProps.Builder)
      .path(path)
      .bucket(bucket)
      .identifier(identifier.orNull)
      .version(version.orNull)
      .build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy