commonMain.aws.sdk.kotlin.services.comprehend.model.DetectPiiEntitiesRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of comprehend-jvm Show documentation
Show all versions of comprehend-jvm Show documentation
The AWS SDK for Kotlin client for Comprehend
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.comprehend.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DetectPiiEntitiesRequest private constructor(builder: Builder) {
/**
* The language of the input text. Enter the language code for English (en) or Spanish (es).
*/
public val languageCode: aws.sdk.kotlin.services.comprehend.model.LanguageCode? = builder.languageCode
/**
* A UTF-8 text string. The maximum string size is 100 KB.
*/
public val text: kotlin.String? = builder.text
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.comprehend.model.DetectPiiEntitiesRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DetectPiiEntitiesRequest(")
append("languageCode=$languageCode,")
append("text=$text")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = languageCode?.hashCode() ?: 0
result = 31 * result + (text?.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 DetectPiiEntitiesRequest
if (languageCode != other.languageCode) return false
if (text != other.text) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.comprehend.model.DetectPiiEntitiesRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The language of the input text. Enter the language code for English (en) or Spanish (es).
*/
public var languageCode: aws.sdk.kotlin.services.comprehend.model.LanguageCode? = null
/**
* A UTF-8 text string. The maximum string size is 100 KB.
*/
public var text: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.comprehend.model.DetectPiiEntitiesRequest) : this() {
this.languageCode = x.languageCode
this.text = x.text
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.comprehend.model.DetectPiiEntitiesRequest = DetectPiiEntitiesRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}