![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.inputs.TopicNamedEntityArgs.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.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.TopicNamedEntityArgs.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.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property definition The definition of a named entity.
* @property entityDescription The description of the named entity.
* @property entityName The name of the named entity.
* @property entitySynonyms The other names or aliases for the named entity.
* @property semanticEntityType The type of named entity that a topic represents.
*/
public data class TopicNamedEntityArgs(
public val definition: Output>? = null,
public val entityDescription: Output? = null,
public val entityName: Output,
public val entitySynonyms: Output>? = null,
public val semanticEntityType: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.TopicNamedEntityArgs =
com.pulumi.awsnative.quicksight.inputs.TopicNamedEntityArgs.builder()
.definition(
definition?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.entityDescription(entityDescription?.applyValue({ args0 -> args0 }))
.entityName(entityName.applyValue({ args0 -> args0 }))
.entitySynonyms(entitySynonyms?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.semanticEntityType(
semanticEntityType?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [TopicNamedEntityArgs].
*/
@PulumiTagMarker
public class TopicNamedEntityArgsBuilder internal constructor() {
private var definition: Output>? = null
private var entityDescription: Output? = null
private var entityName: Output? = null
private var entitySynonyms: Output>? = null
private var semanticEntityType: Output? = null
/**
* @param value The definition of a named entity.
*/
@JvmName("sbkomravnllxlnyr")
public suspend fun definition(`value`: Output>) {
this.definition = value
}
@JvmName("omdlfwppddmoufru")
public suspend fun definition(vararg values: Output) {
this.definition = Output.all(values.asList())
}
/**
* @param values The definition of a named entity.
*/
@JvmName("jmwhtvtsnbgfmdoj")
public suspend fun definition(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy