commonMain.aws.sdk.kotlin.services.wisdom.model.ConnectConfiguration.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
/**
* The configuration information of the Amazon Connect data source.
*/
public class ConnectConfiguration private constructor(builder: Builder) {
/**
* The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
*/
public val instanceId: kotlin.String? = builder.instanceId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.wisdom.model.ConnectConfiguration = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ConnectConfiguration(")
append("instanceId=$instanceId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = instanceId?.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 ConnectConfiguration
if (instanceId != other.instanceId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.wisdom.model.ConnectConfiguration = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
*/
public var instanceId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.wisdom.model.ConnectConfiguration) : this() {
this.instanceId = x.instanceId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.wisdom.model.ConnectConfiguration = ConnectConfiguration(this)
internal fun correctErrors(): Builder {
return this
}
}
}