![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.dynamodb.kotlin.outputs.TableCsv.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.dynamodb.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* The options for imported source files in CSV format. The values are Delimiter and HeaderList.
* @property delimiter The delimiter used for separating items in the CSV file being imported.
* @property headerList List of the headers used to specify a common header for all source CSV files being imported. If this field is specified then the first line of each CSV file is treated as data instead of the header. If this field is not specified the the first line of each CSV file is treated as the header.
*/
public data class TableCsv(
public val delimiter: String? = null,
public val headerList: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.dynamodb.outputs.TableCsv): TableCsv =
TableCsv(
delimiter = javaType.delimiter().map({ args0 -> args0 }).orElse(null),
headerList = javaType.headerList().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy