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

com.pulumi.awsnative.kendra.kotlin.enums.FaqFileFormat.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.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 - 2024 Weber Informatics LLC | Privacy Policy