commonMain.aws.sdk.kotlin.services.entityresolution.model.Rule.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of entityresolution-jvm Show documentation
Show all versions of entityresolution-jvm Show documentation
The AWS SDK for Kotlin client for EntityResolution
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.entityresolution.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* An object containing `RuleName`, and `MatchingKeys`.
*/
public class Rule private constructor(builder: Builder) {
/**
* A list of `MatchingKeys`. The `MatchingKeys` must have been defined in the `SchemaMapping`. Two records are considered to match according to this rule if all of the `MatchingKeys` match.
*/
public val matchingKeys: List = requireNotNull(builder.matchingKeys) { "A non-null value must be provided for matchingKeys" }
/**
* A name for the matching rule.
*/
public val ruleName: kotlin.String = requireNotNull(builder.ruleName) { "A non-null value must be provided for ruleName" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.entityresolution.model.Rule = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("Rule(")
append("matchingKeys=$matchingKeys,")
append("ruleName=$ruleName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = matchingKeys.hashCode()
result = 31 * result + (ruleName.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 Rule
if (matchingKeys != other.matchingKeys) return false
if (ruleName != other.ruleName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.entityresolution.model.Rule = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A list of `MatchingKeys`. The `MatchingKeys` must have been defined in the `SchemaMapping`. Two records are considered to match according to this rule if all of the `MatchingKeys` match.
*/
public var matchingKeys: List? = null
/**
* A name for the matching rule.
*/
public var ruleName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.entityresolution.model.Rule) : this() {
this.matchingKeys = x.matchingKeys
this.ruleName = x.ruleName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.entityresolution.model.Rule = Rule(this)
internal fun correctErrors(): Builder {
if (matchingKeys == null) matchingKeys = emptyList()
if (ruleName == null) ruleName = ""
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy