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

io.burkard.cdk.services.autoscaling.BlockDevice.scala Maven / Gradle / Ivy

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

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

  def apply(
    volume: software.amazon.awscdk.services.autoscaling.BlockDeviceVolume,
    deviceName: String
  ): software.amazon.awscdk.services.autoscaling.BlockDevice =
    (new software.amazon.awscdk.services.autoscaling.BlockDevice.Builder)
      .volume(volume)
      .deviceName(deviceName)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy