
commonMain.aws.sdk.kotlin.services.kendra.model.FailedEntity.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.kendra.model
/**
* Information on the users or groups in your IAM Identity Center identity source that failed to properly configure with your Amazon Kendra experience.
*/
public class FailedEntity private constructor(builder: Builder) {
/**
* The identifier of the user or group in your IAM Identity Center identity source. For example, a user ID could be an email.
*/
public val entityId: kotlin.String? = builder.entityId
/**
* The reason the user or group in your IAM Identity Center identity source failed to properly configure with your Amazon Kendra experience.
*/
public val errorMessage: kotlin.String? = builder.errorMessage
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.kendra.model.FailedEntity = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("FailedEntity(")
append("entityId=$entityId,")
append("errorMessage=$errorMessage")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = entityId?.hashCode() ?: 0
result = 31 * result + (errorMessage?.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 FailedEntity
if (entityId != other.entityId) return false
if (errorMessage != other.errorMessage) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.kendra.model.FailedEntity = Builder(this).apply(block).build()
public class Builder {
/**
* The identifier of the user or group in your IAM Identity Center identity source. For example, a user ID could be an email.
*/
public var entityId: kotlin.String? = null
/**
* The reason the user or group in your IAM Identity Center identity source failed to properly configure with your Amazon Kendra experience.
*/
public var errorMessage: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.kendra.model.FailedEntity) : this() {
this.entityId = x.entityId
this.errorMessage = x.errorMessage
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.kendra.model.FailedEntity = FailedEntity(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy