commonMain.aws.sdk.kotlin.services.cleanroomsml.model.StartTrainedModelExportJobRequest.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 StartTrainedModelExportJobRequest private constructor(builder: Builder) {
/**
* The description of the trained model export job.
*/
public val description: kotlin.String? = builder.description
/**
* The membership ID of the member that is receiving the exported trained model artifacts.
*/
public val membershipIdentifier: kotlin.String? = builder.membershipIdentifier
/**
* The name of the trained model export job.
*/
public val name: kotlin.String? = builder.name
/**
* The output configuration information for the trained model export job.
*/
public val outputConfiguration: aws.sdk.kotlin.services.cleanroomsml.model.TrainedModelExportOutputConfiguration? = builder.outputConfiguration
/**
* The Amazon Resource Name (ARN) of the trained model that you want to export.
*/
public val trainedModelArn: kotlin.String? = builder.trainedModelArn
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.cleanroomsml.model.StartTrainedModelExportJobRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("StartTrainedModelExportJobRequest(")
append("description=$description,")
append("membershipIdentifier=$membershipIdentifier,")
append("name=$name,")
append("outputConfiguration=$outputConfiguration,")
append("trainedModelArn=$trainedModelArn")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = description?.hashCode() ?: 0
result = 31 * result + (membershipIdentifier?.hashCode() ?: 0)
result = 31 * result + (name?.hashCode() ?: 0)
result = 31 * result + (outputConfiguration?.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 StartTrainedModelExportJobRequest
if (description != other.description) return false
if (membershipIdentifier != other.membershipIdentifier) return false
if (name != other.name) return false
if (outputConfiguration != other.outputConfiguration) return false
if (trainedModelArn != other.trainedModelArn) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.cleanroomsml.model.StartTrainedModelExportJobRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The description of the trained model export job.
*/
public var description: kotlin.String? = null
/**
* The membership ID of the member that is receiving the exported trained model artifacts.
*/
public var membershipIdentifier: kotlin.String? = null
/**
* The name of the trained model export job.
*/
public var name: kotlin.String? = null
/**
* The output configuration information for the trained model export job.
*/
public var outputConfiguration: aws.sdk.kotlin.services.cleanroomsml.model.TrainedModelExportOutputConfiguration? = null
/**
* The Amazon Resource Name (ARN) of the trained model that you want to export.
*/
public var trainedModelArn: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.cleanroomsml.model.StartTrainedModelExportJobRequest) : this() {
this.description = x.description
this.membershipIdentifier = x.membershipIdentifier
this.name = x.name
this.outputConfiguration = x.outputConfiguration
this.trainedModelArn = x.trainedModelArn
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.cleanroomsml.model.StartTrainedModelExportJobRequest = StartTrainedModelExportJobRequest(this)
/**
* construct an [aws.sdk.kotlin.services.cleanroomsml.model.TrainedModelExportOutputConfiguration] inside the given [block]
*/
public fun outputConfiguration(block: aws.sdk.kotlin.services.cleanroomsml.model.TrainedModelExportOutputConfiguration.Builder.() -> kotlin.Unit) {
this.outputConfiguration = aws.sdk.kotlin.services.cleanroomsml.model.TrainedModelExportOutputConfiguration.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}