All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.sagemakera2iruntime.model.HumanLoopOutput.kt Maven / Gradle / Ivy

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.sagemakera2iruntime.model



/**
 * Information about where the human output will be stored.
 */
public class HumanLoopOutput private constructor(builder: Builder) {
    /**
     * The location of the Amazon S3 object where Amazon Augmented AI stores your human loop output.
     */
    public val outputS3Uri: kotlin.String? = builder.outputS3Uri

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.sagemakera2iruntime.model.HumanLoopOutput = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("HumanLoopOutput(")
        append("outputS3Uri=$outputS3Uri")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = outputS3Uri?.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 HumanLoopOutput

        if (outputS3Uri != other.outputS3Uri) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.sagemakera2iruntime.model.HumanLoopOutput = Builder(this).apply(block).build()

    public class Builder {
        /**
         * The location of the Amazon S3 object where Amazon Augmented AI stores your human loop output.
         */
        public var outputS3Uri: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.sagemakera2iruntime.model.HumanLoopOutput) : this() {
            this.outputS3Uri = x.outputS3Uri
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.sagemakera2iruntime.model.HumanLoopOutput = HumanLoopOutput(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy