commonMain.aws.sdk.kotlin.services.lexmodelbuildingservice.model.GetBotChannelAssociationRequest.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.lexmodelbuildingservice.model
import aws.smithy.kotlin.runtime.SdkDsl
public class GetBotChannelAssociationRequest private constructor(builder: Builder) {
/**
* An alias pointing to the specific version of the Amazon Lex bot to which this association is being made.
*/
public val botAlias: kotlin.String? = builder.botAlias
/**
* The name of the Amazon Lex bot.
*/
public val botName: kotlin.String? = builder.botName
/**
* The name of the association between the bot and the channel. The name is case sensitive.
*/
public val name: kotlin.String? = builder.name
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.lexmodelbuildingservice.model.GetBotChannelAssociationRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetBotChannelAssociationRequest(")
append("botAlias=$botAlias,")
append("botName=$botName,")
append("name=$name")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = botAlias?.hashCode() ?: 0
result = 31 * result + (botName?.hashCode() ?: 0)
result = 31 * result + (name?.hashCode() ?: 0)
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as GetBotChannelAssociationRequest
if (botAlias != other.botAlias) return false
if (botName != other.botName) return false
if (name != other.name) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.lexmodelbuildingservice.model.GetBotChannelAssociationRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* An alias pointing to the specific version of the Amazon Lex bot to which this association is being made.
*/
public var botAlias: kotlin.String? = null
/**
* The name of the Amazon Lex bot.
*/
public var botName: kotlin.String? = null
/**
* The name of the association between the bot and the channel. The name is case sensitive.
*/
public var name: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.lexmodelbuildingservice.model.GetBotChannelAssociationRequest) : this() {
this.botAlias = x.botAlias
this.botName = x.botName
this.name = x.name
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.lexmodelbuildingservice.model.GetBotChannelAssociationRequest = GetBotChannelAssociationRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy