io.burkard.cdk.pipelines.FileSetLocation.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 FileSetLocation {
def apply(
directory: String,
fileSet: software.amazon.awscdk.pipelines.FileSet
): software.amazon.awscdk.pipelines.FileSetLocation =
(new software.amazon.awscdk.pipelines.FileSetLocation.Builder)
.directory(directory)
.fileSet(fileSet)
.build()
}