commonMain.aws.sdk.kotlin.services.bedrock.model.TrainingDataConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bedrock-jvm Show documentation
Show all versions of bedrock-jvm Show documentation
The AWS SDK for Kotlin client for Bedrock
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.bedrock.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* S3 Location of the training data.
*/
public class TrainingDataConfig private constructor(builder: Builder) {
/**
* The S3 URI where the training data is stored.
*/
public val s3Uri: kotlin.String = requireNotNull(builder.s3Uri) { "A non-null value must be provided for s3Uri" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.bedrock.model.TrainingDataConfig = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("TrainingDataConfig(")
append("s3Uri=$s3Uri")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = s3Uri.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 TrainingDataConfig
if (s3Uri != other.s3Uri) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.bedrock.model.TrainingDataConfig = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The S3 URI where the training data is stored.
*/
public var s3Uri: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.bedrock.model.TrainingDataConfig) : this() {
this.s3Uri = x.s3Uri
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.bedrock.model.TrainingDataConfig = TrainingDataConfig(this)
internal fun correctErrors(): Builder {
if (s3Uri == null) s3Uri = ""
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy