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

io.burkard.cdk.services.sagemaker.cfnAppImageConfig.FileSystemConfigProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.sagemaker.cfnAppImageConfig

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

  def apply(
    mountPath: Option[String] = None,
    defaultGid: Option[Number] = None,
    defaultUid: Option[Number] = None
  ): software.amazon.awscdk.services.sagemaker.CfnAppImageConfig.FileSystemConfigProperty =
    (new software.amazon.awscdk.services.sagemaker.CfnAppImageConfig.FileSystemConfigProperty.Builder)
      .mountPath(mountPath.orNull)
      .defaultGid(defaultGid.orNull)
      .defaultUid(defaultUid.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy