io.burkard.cdk.services.transfer.cfnUser.PosixProfileProperty.scala Maven / Gradle / Ivy
The newest version!
package io.burkard.cdk.services.transfer.cfnUser
import scala.collection.JavaConverters._
@scala.annotation.nowarn("cat=deprecation")
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object PosixProfileProperty {
def apply(
uid: Number,
gid: Number,
secondaryGids: Option[List[_ <: Number]] = None
): software.amazon.awscdk.services.transfer.CfnUser.PosixProfileProperty =
(new software.amazon.awscdk.services.transfer.CfnUser.PosixProfileProperty.Builder)
.uid(uid)
.gid(gid)
.secondaryGids(secondaryGids.map(_.asJava).orNull)
.build()
}