com.pulumi.awsnative.datazone.kotlin.inputs.DataSourceGlueRunConfigurationInputArgs.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.datazone.kotlin.inputs
import com.pulumi.awsnative.datazone.inputs.DataSourceGlueRunConfigurationInputArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property autoImportDataQualityResult Specifies whether to automatically import data quality metrics as part of the data source run.
* @property dataAccessRole The data access role included in the configuration details of the AWS Glue data source.
* @property relationalFilterConfigurations The relational filter configurations included in the configuration details of the AWS Glue data source.
*/
public data class DataSourceGlueRunConfigurationInputArgs(
public val autoImportDataQualityResult: Output? = null,
public val dataAccessRole: Output? = null,
public val relationalFilterConfigurations: Output>,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.datazone.inputs.DataSourceGlueRunConfigurationInputArgs =
com.pulumi.awsnative.datazone.inputs.DataSourceGlueRunConfigurationInputArgs.builder()
.autoImportDataQualityResult(autoImportDataQualityResult?.applyValue({ args0 -> args0 }))
.dataAccessRole(dataAccessRole?.applyValue({ args0 -> args0 }))
.relationalFilterConfigurations(
relationalFilterConfigurations.applyValue({ args0 ->
args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) })
}),
).build()
}
/**
* Builder for [DataSourceGlueRunConfigurationInputArgs].
*/
@PulumiTagMarker
public class DataSourceGlueRunConfigurationInputArgsBuilder internal constructor() {
private var autoImportDataQualityResult: Output? = null
private var dataAccessRole: Output? = null
private var relationalFilterConfigurations:
Output>? = null
/**
* @param value Specifies whether to automatically import data quality metrics as part of the data source run.
*/
@JvmName("uchsqrvxjobahdmb")
public suspend fun autoImportDataQualityResult(`value`: Output) {
this.autoImportDataQualityResult = value
}
/**
* @param value The data access role included in the configuration details of the AWS Glue data source.
*/
@JvmName("utbnbufwrxkahwhx")
public suspend fun dataAccessRole(`value`: Output) {
this.dataAccessRole = value
}
/**
* @param value The relational filter configurations included in the configuration details of the AWS Glue data source.
*/
@JvmName("sxdodvwyxhwvxjkp")
public suspend fun relationalFilterConfigurations(`value`: Output>) {
this.relationalFilterConfigurations = value
}
@JvmName("upmvhjxtfbebqftf")
public suspend fun relationalFilterConfigurations(vararg values: Output) {
this.relationalFilterConfigurations = Output.all(values.asList())
}
/**
* @param values The relational filter configurations included in the configuration details of the AWS Glue data source.
*/
@JvmName("glomcvytkyvovvvg")
public suspend fun relationalFilterConfigurations(values: List