![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.kendra.kotlin.enums.FaqFileFormat.kt Maven / Gradle / Ivy
@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 }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy