commonMain.aws.sdk.kotlin.services.cleanroomsml.model.GetCollaborationTrainedModelRequest.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
public class GetCollaborationTrainedModelRequest private constructor(builder: Builder) {
/**
* The collaboration ID that contains the trained model that you want to return information about.
*/
public val collaborationIdentifier: kotlin.String? = builder.collaborationIdentifier
/**
* The Amazon Resource Name (ARN) of the trained model that you want to return information about.
*/
public val trainedModelArn: kotlin.String? = builder.trainedModelArn
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.cleanroomsml.model.GetCollaborationTrainedModelRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetCollaborationTrainedModelRequest(")
append("collaborationIdentifier=$collaborationIdentifier,")
append("trainedModelArn=$trainedModelArn")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = collaborationIdentifier?.hashCode() ?: 0
result = 31 * result + (trainedModelArn?.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 GetCollaborationTrainedModelRequest
if (collaborationIdentifier != other.collaborationIdentifier) return false
if (trainedModelArn != other.trainedModelArn) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.cleanroomsml.model.GetCollaborationTrainedModelRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The collaboration ID that contains the trained model that you want to return information about.
*/
public var collaborationIdentifier: kotlin.String? = null
/**
* The Amazon Resource Name (ARN) of the trained model that you want to return information about.
*/
public var trainedModelArn: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.cleanroomsml.model.GetCollaborationTrainedModelRequest) : this() {
this.collaborationIdentifier = x.collaborationIdentifier
this.trainedModelArn = x.trainedModelArn
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.cleanroomsml.model.GetCollaborationTrainedModelRequest = GetCollaborationTrainedModelRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}