![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.databrew.kotlin.outputs.JobStatisticsConfiguration.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.databrew.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property includedStatistics List of included evaluations. When the list is undefined, all supported evaluations will be included.
* @property overrides List of overrides for evaluations.
*/
public data class JobStatisticsConfiguration(
public val includedStatistics: List? = null,
public val overrides: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.databrew.outputs.JobStatisticsConfiguration): JobStatisticsConfiguration = JobStatisticsConfiguration(
includedStatistics = javaType.includedStatistics().map({ args0 -> args0 }),
overrides = javaType.overrides().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.databrew.kotlin.outputs.JobStatisticOverride.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy