commonMain.aws.sdk.kotlin.services.comprehend.model.EntityRecognizerAnnotations.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
/**
* Describes the annotations associated with a entity recognizer.
*/
public class EntityRecognizerAnnotations private constructor(builder: Builder) {
/**
* Specifies the Amazon S3 location where the annotations for an entity recognizer are located. The URI must be in the same Region as the API endpoint that you are calling.
*/
public val s3Uri: kotlin.String = requireNotNull(builder.s3Uri) { "A non-null value must be provided for s3Uri" }
/**
* Specifies the Amazon S3 location where the test annotations for an entity recognizer are located. The URI must be in the same Region as the API endpoint that you are calling.
*/
public val testS3Uri: kotlin.String? = builder.testS3Uri
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.comprehend.model.EntityRecognizerAnnotations = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("EntityRecognizerAnnotations(")
append("s3Uri=$s3Uri,")
append("testS3Uri=$testS3Uri")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = s3Uri.hashCode()
result = 31 * result + (testS3Uri?.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 EntityRecognizerAnnotations
if (s3Uri != other.s3Uri) return false
if (testS3Uri != other.testS3Uri) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.comprehend.model.EntityRecognizerAnnotations = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Specifies the Amazon S3 location where the annotations for an entity recognizer are located. The URI must be in the same Region as the API endpoint that you are calling.
*/
public var s3Uri: kotlin.String? = null
/**
* Specifies the Amazon S3 location where the test annotations for an entity recognizer are located. The URI must be in the same Region as the API endpoint that you are calling.
*/
public var testS3Uri: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.comprehend.model.EntityRecognizerAnnotations) : this() {
this.s3Uri = x.s3Uri
this.testS3Uri = x.testS3Uri
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.comprehend.model.EntityRecognizerAnnotations = EntityRecognizerAnnotations(this)
internal fun correctErrors(): Builder {
if (s3Uri == null) s3Uri = ""
return this
}
}
}