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

com.pulumi.awsnative.s3.kotlin.enums.BucketDestinationFormat.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: 1.11.0.0
Show newest version
@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 }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy