![JAR search and dependency download from the Maven repository](/logo.png)
io.burkard.cdk.services.fsx.cfnFileSystem.LustreConfigurationProperty.scala Maven / Gradle / Ivy
package io.burkard.cdk.services.fsx.cfnFileSystem
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object LustreConfigurationProperty {
def apply(
perUnitStorageThroughput: Option[Number] = None,
dataCompressionType: Option[String] = None,
dailyAutomaticBackupStartTime: Option[String] = None,
deploymentType: Option[String] = None,
weeklyMaintenanceStartTime: Option[String] = None,
importedFileChunkSize: Option[Number] = None,
importPath: Option[String] = None,
driveCacheType: Option[String] = None,
autoImportPolicy: Option[String] = None,
exportPath: Option[String] = None,
copyTagsToBackups: Option[Boolean] = None,
automaticBackupRetentionDays: Option[Number] = None
): software.amazon.awscdk.services.fsx.CfnFileSystem.LustreConfigurationProperty =
(new software.amazon.awscdk.services.fsx.CfnFileSystem.LustreConfigurationProperty.Builder)
.perUnitStorageThroughput(perUnitStorageThroughput.orNull)
.dataCompressionType(dataCompressionType.orNull)
.dailyAutomaticBackupStartTime(dailyAutomaticBackupStartTime.orNull)
.deploymentType(deploymentType.orNull)
.weeklyMaintenanceStartTime(weeklyMaintenanceStartTime.orNull)
.importedFileChunkSize(importedFileChunkSize.orNull)
.importPath(importPath.orNull)
.driveCacheType(driveCacheType.orNull)
.autoImportPolicy(autoImportPolicy.orNull)
.exportPath(exportPath.orNull)
.copyTagsToBackups(copyTagsToBackups.map(Boolean.box).orNull)
.automaticBackupRetentionDays(automaticBackupRetentionDays.orNull)
.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy