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

com.pulumi.aws.lex.kotlin.outputs.BotIntent.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.lex.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property intentName The name of the intent. Must be less than or equal to 100 characters in length.
 * @property intentVersion The version of the intent. Must be less than or equal to 64 characters in length.
 */
public data class BotIntent(
    public val intentName: String,
    public val intentVersion: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.aws.lex.outputs.BotIntent): BotIntent = BotIntent(
            intentName = javaType.intentName(),
            intentVersion = javaType.intentVersion(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy