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

com.pulumi.awsnative.nimblestudio.kotlin.outputs.LaunchProfileVolumeConfiguration.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 0.122.0.0
Show newest version
@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), ) } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy