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

io.burkard.cdk.services.fsx.cfnFileSystem.DiskIopsConfigurationProperty.scala Maven / Gradle / Ivy

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

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

  def apply(
    mode: Option[String] = None,
    iops: Option[Number] = None
  ): software.amazon.awscdk.services.fsx.CfnFileSystem.DiskIopsConfigurationProperty =
    (new software.amazon.awscdk.services.fsx.CfnFileSystem.DiskIopsConfigurationProperty.Builder)
      .mode(mode.orNull)
      .iops(iops.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy