All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.lex.kotlin.outputs.BotSlotDefaultValueSpecification.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.lex.kotlin.outputs

import kotlin.Suppress
import kotlin.collections.List

/**
 * A list of values that Amazon Lex should use as the default value for a slot.
 * @property defaultValueList A list of slot default values
 */
public data class BotSlotDefaultValueSpecification(
    public val defaultValueList: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.lex.outputs.BotSlotDefaultValueSpecification): BotSlotDefaultValueSpecification = BotSlotDefaultValueSpecification(
            defaultValueList = javaType.defaultValueList().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.lex.kotlin.outputs.BotSlotDefaultValue.Companion.toKotlin(args0)
                })
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy