com.pulumi.awsnative.kendra.kotlin.enums.FaqFileFormat.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.kendra.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* Format of the input file
*/
public enum class FaqFileFormat(
public val javaValue: com.pulumi.awsnative.kendra.enums.FaqFileFormat,
) : ConvertibleToJava {
Csv(com.pulumi.awsnative.kendra.enums.FaqFileFormat.Csv),
CsvWithHeader(com.pulumi.awsnative.kendra.enums.FaqFileFormat.CsvWithHeader),
Json(com.pulumi.awsnative.kendra.enums.FaqFileFormat.Json),
;
override fun toJava(): com.pulumi.awsnative.kendra.enums.FaqFileFormat = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.kendra.enums.FaqFileFormat): FaqFileFormat =
FaqFileFormat.values().first { it.javaValue == javaType }
}
}