com.pulumi.aws.lex.kotlin.outputs.BotIntent.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.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