![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.databrew.kotlin.outputs.JobProfileConfiguration.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.databrew.kotlin.outputs
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @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 JobProfileConfiguration(
public val columnStatisticsConfigurations: List? = null,
public val datasetStatisticsConfiguration: JobStatisticsConfiguration? = null,
public val entityDetectorConfiguration: JobEntityDetectorConfiguration? = null,
public val profileColumns: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.databrew.outputs.JobProfileConfiguration): JobProfileConfiguration = JobProfileConfiguration(
columnStatisticsConfigurations = javaType.columnStatisticsConfigurations().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.databrew.kotlin.outputs.JobColumnStatisticsConfiguration.Companion.toKotlin(args0)
})
}),
datasetStatisticsConfiguration = javaType.datasetStatisticsConfiguration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.databrew.kotlin.outputs.JobStatisticsConfiguration.Companion.toKotlin(args0)
})
}).orElse(null),
entityDetectorConfiguration = javaType.entityDetectorConfiguration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.databrew.kotlin.outputs.JobEntityDetectorConfiguration.Companion.toKotlin(args0)
})
}).orElse(null),
profileColumns = javaType.profileColumns().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.databrew.kotlin.outputs.JobColumnSelector.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy