com.pulumi.awsnative.kendra.kotlin.inputs.DataSourceAclConfigurationArgs.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.kendra.kotlin.inputs
import com.pulumi.awsnative.kendra.inputs.DataSourceAclConfigurationArgs.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 kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property allowedGroupsColumnName A list of groups, separated by semi-colons, that filters a query response based on user context. The document is only returned to users that are in one of the groups specified in the `UserContext` field of the [Query](https://docs.aws.amazon.com/kendra/latest/dg/API_Query.html) operation.
*/
public data class DataSourceAclConfigurationArgs(
public val allowedGroupsColumnName: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.kendra.inputs.DataSourceAclConfigurationArgs =
com.pulumi.awsnative.kendra.inputs.DataSourceAclConfigurationArgs.builder()
.allowedGroupsColumnName(allowedGroupsColumnName.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DataSourceAclConfigurationArgs].
*/
@PulumiTagMarker
public class DataSourceAclConfigurationArgsBuilder internal constructor() {
private var allowedGroupsColumnName: Output? = null
/**
* @param value A list of groups, separated by semi-colons, that filters a query response based on user context. The document is only returned to users that are in one of the groups specified in the `UserContext` field of the [Query](https://docs.aws.amazon.com/kendra/latest/dg/API_Query.html) operation.
*/
@JvmName("ihuqqqtfdfnhilbs")
public suspend fun allowedGroupsColumnName(`value`: Output) {
this.allowedGroupsColumnName = value
}
/**
* @param value A list of groups, separated by semi-colons, that filters a query response based on user context. The document is only returned to users that are in one of the groups specified in the `UserContext` field of the [Query](https://docs.aws.amazon.com/kendra/latest/dg/API_Query.html) operation.
*/
@JvmName("bxeloptkfvylbxeq")
public suspend fun allowedGroupsColumnName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.allowedGroupsColumnName = mapped
}
internal fun build(): DataSourceAclConfigurationArgs = DataSourceAclConfigurationArgs(
allowedGroupsColumnName = allowedGroupsColumnName ?: throw
PulumiNullFieldException("allowedGroupsColumnName"),
)
}