
com.pulumi.awsnative.elasticache.kotlin.outputs.ServerlessCacheEcpuPerSecond.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.elasticache.kotlin.outputs
import kotlin.Int
import kotlin.Suppress
/**
* The ECPU per second of the Serverless Cache.
* @property maximum The maximum ECPU per second of the Serverless Cache.
* @property minimum The minimum ECPU per second of the Serverless Cache.
*/
public data class ServerlessCacheEcpuPerSecond(
public val maximum: Int? = null,
public val minimum: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.elasticache.outputs.ServerlessCacheEcpuPerSecond): ServerlessCacheEcpuPerSecond = ServerlessCacheEcpuPerSecond(
maximum = javaType.maximum().map({ args0 -> args0 }).orElse(null),
minimum = javaType.minimum().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy