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

commonMain.aws.sdk.kotlin.services.cleanroomsml.model.ModelTrainingDataChannel.kt Maven / Gradle / Ivy

There is a newer version: 1.3.79
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.cleanroomsml.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Information about the model training data channel. A training data channel is a named data source that the training algorithms can consume.
 */
public class ModelTrainingDataChannel private constructor(builder: Builder) {
    /**
     * The name of the training data channel.
     */
    public val channelName: kotlin.String = requireNotNull(builder.channelName) { "A non-null value must be provided for channelName" }
    /**
     * The Amazon Resource Name (ARN) of the ML input channel for this model training data channel.
     */
    public val mlInputChannelArn: kotlin.String = requireNotNull(builder.mlInputChannelArn) { "A non-null value must be provided for mlInputChannelArn" }

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

    override fun toString(): kotlin.String = buildString {
        append("ModelTrainingDataChannel(")
        append("channelName=$channelName,")
        append("mlInputChannelArn=$mlInputChannelArn")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = channelName.hashCode()
        result = 31 * result + (mlInputChannelArn.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 ModelTrainingDataChannel

        if (channelName != other.channelName) return false
        if (mlInputChannelArn != other.mlInputChannelArn) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The name of the training data channel.
         */
        public var channelName: kotlin.String? = null
        /**
         * The Amazon Resource Name (ARN) of the ML input channel for this model training data channel.
         */
        public var mlInputChannelArn: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.cleanroomsml.model.ModelTrainingDataChannel) : this() {
            this.channelName = x.channelName
            this.mlInputChannelArn = x.mlInputChannelArn
        }

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

        internal fun correctErrors(): Builder {
            if (channelName == null) channelName = ""
            if (mlInputChannelArn == null) mlInputChannelArn = ""
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy