commonMain.aws.sdk.kotlin.services.wisdom.model.GetAssistantAssociationRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wisdom-jvm Show documentation
Show all versions of wisdom-jvm Show documentation
The AWS SDK for Kotlin client for Wisdom
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.wisdom.model
import aws.smithy.kotlin.runtime.SdkDsl
public class GetAssistantAssociationRequest private constructor(builder: Builder) {
/**
* The identifier of the assistant association. Can be either the ID or the ARN. URLs cannot contain the ARN.
*/
public val assistantAssociationId: kotlin.String = requireNotNull(builder.assistantAssociationId) { "A non-null value must be provided for assistantAssociationId" }
/**
* The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
*/
public val assistantId: kotlin.String = requireNotNull(builder.assistantId) { "A non-null value must be provided for assistantId" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.wisdom.model.GetAssistantAssociationRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetAssistantAssociationRequest(")
append("assistantAssociationId=$assistantAssociationId,")
append("assistantId=$assistantId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = assistantAssociationId.hashCode()
result = 31 * result + (assistantId.hashCode())
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 GetAssistantAssociationRequest
if (assistantAssociationId != other.assistantAssociationId) return false
if (assistantId != other.assistantId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.wisdom.model.GetAssistantAssociationRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The identifier of the assistant association. Can be either the ID or the ARN. URLs cannot contain the ARN.
*/
public var assistantAssociationId: kotlin.String? = null
/**
* The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
*/
public var assistantId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.wisdom.model.GetAssistantAssociationRequest) : this() {
this.assistantAssociationId = x.assistantAssociationId
this.assistantId = x.assistantId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.wisdom.model.GetAssistantAssociationRequest = GetAssistantAssociationRequest(this)
internal fun correctErrors(): Builder {
if (assistantAssociationId == null) assistantAssociationId = ""
if (assistantId == null) assistantId = ""
return this
}
}
}