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

com.pulumi.awsnative.databrew.kotlin.outputs.DatasetCsvOptions.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.databrew.kotlin.outputs

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress

/**
 * Csv options
 * @property delimiter A single character that specifies the delimiter being used in the CSV file.
 * @property headerRow A variable that specifies whether the first row in the file is parsed as the header. If this value is false, column names are auto-generated.
 */
public data class DatasetCsvOptions(
    public val delimiter: String? = null,
    public val headerRow: Boolean? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.databrew.outputs.DatasetCsvOptions): DatasetCsvOptions = DatasetCsvOptions(
            delimiter = javaType.delimiter().map({ args0 -> args0 }).orElse(null),
            headerRow = javaType.headerRow().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy