com.pulumi.awsnative.databrew.kotlin.inputs.JobStatisticsConfigurationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.databrew.kotlin.inputs
import com.pulumi.awsnative.databrew.inputs.JobStatisticsConfigurationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @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 JobStatisticsConfigurationArgs(
public val includedStatistics: Output>? = null,
public val overrides: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.databrew.inputs.JobStatisticsConfigurationArgs =
com.pulumi.awsnative.databrew.inputs.JobStatisticsConfigurationArgs.builder()
.includedStatistics(includedStatistics?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.overrides(
overrides?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [JobStatisticsConfigurationArgs].
*/
@PulumiTagMarker
public class JobStatisticsConfigurationArgsBuilder internal constructor() {
private var includedStatistics: Output>? = null
private var overrides: Output>? = null
/**
* @param value List of included evaluations. When the list is undefined, all supported evaluations will be included.
*/
@JvmName("fuyradmitpcxcxwl")
public suspend fun includedStatistics(`value`: Output>) {
this.includedStatistics = value
}
@JvmName("ycbokobgovmqdjho")
public suspend fun includedStatistics(vararg values: Output) {
this.includedStatistics = Output.all(values.asList())
}
/**
* @param values List of included evaluations. When the list is undefined, all supported evaluations will be included.
*/
@JvmName("obyuobpxjomlppun")
public suspend fun includedStatistics(values: List