![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.databrew.kotlin.outputs.JobOutputFormatOptions.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.databrew.kotlin.outputs
import kotlin.Suppress
/**
* Format options for job Output
* @property csv Represents a set of options that define the structure of comma-separated value (CSV) job output.
*/
public data class JobOutputFormatOptions(
public val csv: JobCsvOutputOptions? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.databrew.outputs.JobOutputFormatOptions): JobOutputFormatOptions = JobOutputFormatOptions(
csv = javaType.csv().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.databrew.kotlin.outputs.JobCsvOutputOptions.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy