
commonMain.aws.sdk.kotlin.services.braket.model.JobCheckpointConfig.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.braket.model
/**
* Contains information about the output locations for job checkpoint data.
*/
public class JobCheckpointConfig private constructor(builder: Builder) {
/**
* (Optional) The local directory where checkpoints are written. The default directory is `/opt/braket/checkpoints/`.
*/
public val localPath: kotlin.String? = builder.localPath
/**
* Identifies the S3 path where you want Amazon Braket to store checkpoints. For example, `s3://bucket-name/key-name-prefix`.
*/
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.braket.model.JobCheckpointConfig = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("JobCheckpointConfig(")
append("localPath=$localPath,")
append("s3Uri=$s3Uri")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = localPath?.hashCode() ?: 0
result = 31 * 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 JobCheckpointConfig
if (localPath != other.localPath) return false
if (s3Uri != other.s3Uri) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.braket.model.JobCheckpointConfig = Builder(this).apply(block).build()
public class Builder {
/**
* (Optional) The local directory where checkpoints are written. The default directory is `/opt/braket/checkpoints/`.
*/
public var localPath: kotlin.String? = null
/**
* Identifies the S3 path where you want Amazon Braket to store checkpoints. For example, `s3://bucket-name/key-name-prefix`.
*/
public var s3Uri: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.braket.model.JobCheckpointConfig) : this() {
this.localPath = x.localPath
this.s3Uri = x.s3Uri
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.braket.model.JobCheckpointConfig = JobCheckpointConfig(this)
internal fun correctErrors(): Builder {
if (s3Uri == null) s3Uri = ""
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy