commonMain.aws.sdk.kotlin.services.cleanroomsml.model.ModelTrainingDataChannel.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cleanroomsml-jvm Show documentation
Show all versions of cleanroomsml-jvm Show documentation
The AWS SDK for Kotlin client for CleanRoomsML
// 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
}
}
}