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

io.burkard.cdk.services.fsx.LustreConfiguration.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.fsx

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

  def apply(
    deploymentType: software.amazon.awscdk.services.fsx.LustreDeploymentType,
    perUnitStorageThroughput: Option[Number] = None,
    importedFileChunkSizeMiB: Option[Number] = None,
    dataCompressionType: Option[software.amazon.awscdk.services.fsx.LustreDataCompressionType] = None,
    weeklyMaintenanceStartTime: Option[software.amazon.awscdk.services.fsx.LustreMaintenanceTime] = None,
    importPath: Option[String] = None,
    autoImportPolicy: Option[software.amazon.awscdk.services.fsx.LustreAutoImportPolicy] = None,
    exportPath: Option[String] = None
  ): software.amazon.awscdk.services.fsx.LustreConfiguration =
    (new software.amazon.awscdk.services.fsx.LustreConfiguration.Builder)
      .deploymentType(deploymentType)
      .perUnitStorageThroughput(perUnitStorageThroughput.orNull)
      .importedFileChunkSizeMiB(importedFileChunkSizeMiB.orNull)
      .dataCompressionType(dataCompressionType.orNull)
      .weeklyMaintenanceStartTime(weeklyMaintenanceStartTime.orNull)
      .importPath(importPath.orNull)
      .autoImportPolicy(autoImportPolicy.orNull)
      .exportPath(exportPath.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy