![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.lex.kotlin.outputs.BotIntentOverride.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.lex.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* Override settings to configure the intent state.
* @property name The name of the intent. Only required when you're switching intents.
* @property slots A map of all of the slot value overrides for the intent.
*/
public data class BotIntentOverride(
public val name: String? = null,
public val slots: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.lex.outputs.BotIntentOverride): BotIntentOverride = BotIntentOverride(
name = javaType.name().map({ args0 -> args0 }).orElse(null),
slots = javaType.slots().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.lex.kotlin.outputs.BotSlotValueOverrideMap.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy