Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
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.JobProfileConfigurationArgs.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.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property columnStatisticsConfigurations List of configurations for column evaluations. ColumnStatisticsConfigurations are used to select evaluations and override parameters of evaluations for particular columns. When ColumnStatisticsConfigurations is undefined, the profile job will profile all supported columns and run all supported evaluations.
* @property datasetStatisticsConfiguration Configuration for inter-column evaluations. Configuration can be used to select evaluations and override parameters of evaluations. When configuration is undefined, the profile job will run all supported inter-column evaluations.
* @property entityDetectorConfiguration Configuration of entity detection for a profile job. When undefined, entity detection is disabled.
* @property profileColumns List of column selectors. ProfileColumns can be used to select columns from the dataset. When ProfileColumns is undefined, the profile job will profile all supported columns.
*/
public data class JobProfileConfigurationArgs(
public val columnStatisticsConfigurations: Output>? =
null,
public val datasetStatisticsConfiguration: Output? = null,
public val entityDetectorConfiguration: Output? = null,
public val profileColumns: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.databrew.inputs.JobProfileConfigurationArgs =
com.pulumi.awsnative.databrew.inputs.JobProfileConfigurationArgs.builder()
.columnStatisticsConfigurations(
columnStatisticsConfigurations?.applyValue({ args0 ->
args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) })
}),
)
.datasetStatisticsConfiguration(
datasetStatisticsConfiguration?.applyValue({ args0 ->
args0.let({ args0 -> args0.toJava() })
}),
)
.entityDetectorConfiguration(
entityDetectorConfiguration?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.profileColumns(
profileColumns?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [JobProfileConfigurationArgs].
*/
@PulumiTagMarker
public class JobProfileConfigurationArgsBuilder internal constructor() {
private var columnStatisticsConfigurations: Output>? =
null
private var datasetStatisticsConfiguration: Output? = null
private var entityDetectorConfiguration: Output? = null
private var profileColumns: Output>? = null
/**
* @param value List of configurations for column evaluations. ColumnStatisticsConfigurations are used to select evaluations and override parameters of evaluations for particular columns. When ColumnStatisticsConfigurations is undefined, the profile job will profile all supported columns and run all supported evaluations.
*/
@JvmName("edvdwqhqhkrxqwej")
public suspend fun columnStatisticsConfigurations(`value`: Output>) {
this.columnStatisticsConfigurations = value
}
@JvmName("omgxrdjkuetmsrxl")
public suspend fun columnStatisticsConfigurations(vararg values: Output) {
this.columnStatisticsConfigurations = Output.all(values.asList())
}
/**
* @param values List of configurations for column evaluations. ColumnStatisticsConfigurations are used to select evaluations and override parameters of evaluations for particular columns. When ColumnStatisticsConfigurations is undefined, the profile job will profile all supported columns and run all supported evaluations.
*/
@JvmName("hjmmdiaessmwxbyn")
public suspend fun columnStatisticsConfigurations(values: List