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

com.pulumi.awsnative.elasticache.kotlin.enums.ServerlessCacheDataStorageUnit.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.elasticache.kotlin.enums

import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress

/**
 * The unit of cached data capacity of the Serverless Cache.
 */
public enum class ServerlessCacheDataStorageUnit(
    public val javaValue: com.pulumi.awsnative.elasticache.enums.ServerlessCacheDataStorageUnit,
) : ConvertibleToJava {
    Gb(com.pulumi.awsnative.elasticache.enums.ServerlessCacheDataStorageUnit.Gb),
    ;

    override fun toJava(): com.pulumi.awsnative.elasticache.enums.ServerlessCacheDataStorageUnit =
        javaValue

    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.elasticache.enums.ServerlessCacheDataStorageUnit): ServerlessCacheDataStorageUnit =
            ServerlessCacheDataStorageUnit.values().first { it.javaValue == javaType }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy