commonMain.aws.sdk.kotlin.services.personalize.model.CreateSchemaRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of personalize-jvm Show documentation
Show all versions of personalize-jvm Show documentation
The AWS SDK for Kotlin client for Personalize
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.personalize.model
import aws.smithy.kotlin.runtime.SdkDsl
public class CreateSchemaRequest private constructor(builder: Builder) {
/**
* The domain for the schema. If you are creating a schema for a dataset in a Domain dataset group, specify the domain you chose when you created the Domain dataset group.
*/
public val domain: aws.sdk.kotlin.services.personalize.model.Domain? = builder.domain
/**
* The name for the schema.
*/
public val name: kotlin.String? = builder.name
/**
* A schema in Avro JSON format.
*/
public val schema: kotlin.String? = builder.schema
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.personalize.model.CreateSchemaRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateSchemaRequest(")
append("domain=$domain,")
append("name=$name,")
append("schema=$schema")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = domain?.hashCode() ?: 0
result = 31 * result + (name?.hashCode() ?: 0)
result = 31 * result + (schema?.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 CreateSchemaRequest
if (domain != other.domain) return false
if (name != other.name) return false
if (schema != other.schema) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.personalize.model.CreateSchemaRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The domain for the schema. If you are creating a schema for a dataset in a Domain dataset group, specify the domain you chose when you created the Domain dataset group.
*/
public var domain: aws.sdk.kotlin.services.personalize.model.Domain? = null
/**
* The name for the schema.
*/
public var name: kotlin.String? = null
/**
* A schema in Avro JSON format.
*/
public var schema: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.personalize.model.CreateSchemaRequest) : this() {
this.domain = x.domain
this.name = x.name
this.schema = x.schema
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.personalize.model.CreateSchemaRequest = CreateSchemaRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}