com.pulumi.awsnative.nimblestudio.kotlin.outputs.LaunchProfileVolumeConfiguration.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.nimblestudio.kotlin.outputs
import kotlin.Double
import kotlin.Suppress
/**
* Custom volume configuration for the root volumes that are attached to streaming
* sessions.
* This parameter is only allowed when sessionPersistenceMode
is
* ACTIVATED
.
* @property iops The number of I/O operations per second for the root volume that is attached to
* streaming session.
* @property size The size of the root volume that is attached to the streaming session. The root volume
* size is measured in GiBs.
* @property throughput The throughput to provision for the root volume that is attached to the streaming
* session. The throughput is measured in MiB/s.
*/
public data class LaunchProfileVolumeConfiguration(
public val iops: Double? = null,
public val size: Double? = null,
public val throughput: Double? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.nimblestudio.outputs.LaunchProfileVolumeConfiguration): LaunchProfileVolumeConfiguration = LaunchProfileVolumeConfiguration(
iops = javaType.iops().map({ args0 -> args0 }).orElse(null),
size = javaType.size().map({ args0 -> args0 }).orElse(null),
throughput = javaType.throughput().map({ args0 -> args0 }).orElse(null),
)
}
}