com.pulumi.awsnative.s3.kotlin.enums.BucketDestinationFormat.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.s3.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* Specifies the file format used when exporting data to Amazon S3.
* *Allowed values*: ``CSV`` | ``ORC`` | ``Parquet``
*/
public enum class BucketDestinationFormat(
public val javaValue: com.pulumi.awsnative.s3.enums.BucketDestinationFormat,
) : ConvertibleToJava {
Csv(com.pulumi.awsnative.s3.enums.BucketDestinationFormat.Csv),
Orc(com.pulumi.awsnative.s3.enums.BucketDestinationFormat.Orc),
Parquet(com.pulumi.awsnative.s3.enums.BucketDestinationFormat.Parquet),
;
override fun toJava(): com.pulumi.awsnative.s3.enums.BucketDestinationFormat = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.s3.enums.BucketDestinationFormat): BucketDestinationFormat =
BucketDestinationFormat.values().first { it.javaValue == javaType }
}
}