All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.personalize.model.UpdateDatasetRequest.kt Maven / Gradle / Ivy

The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.personalize.model

import aws.smithy.kotlin.runtime.SdkDsl

public class UpdateDatasetRequest private constructor(builder: Builder) {
    /**
     * The Amazon Resource Name (ARN) of the dataset that you want to update.
     */
    public val datasetArn: kotlin.String? = builder.datasetArn
    /**
     * The Amazon Resource Name (ARN) of the new schema you want use.
     */
    public val schemaArn: kotlin.String? = builder.schemaArn

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.personalize.model.UpdateDatasetRequest = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("UpdateDatasetRequest(")
        append("datasetArn=$datasetArn,")
        append("schemaArn=$schemaArn")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = datasetArn?.hashCode() ?: 0
        result = 31 * result + (schemaArn?.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 UpdateDatasetRequest

        if (datasetArn != other.datasetArn) return false
        if (schemaArn != other.schemaArn) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.personalize.model.UpdateDatasetRequest = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The Amazon Resource Name (ARN) of the dataset that you want to update.
         */
        public var datasetArn: kotlin.String? = null
        /**
         * The Amazon Resource Name (ARN) of the new schema you want use.
         */
        public var schemaArn: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.personalize.model.UpdateDatasetRequest) : this() {
            this.datasetArn = x.datasetArn
            this.schemaArn = x.schemaArn
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.personalize.model.UpdateDatasetRequest = UpdateDatasetRequest(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy