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

commonMain.aws.sdk.kotlin.services.bedrockagent.model.FlowNodeInput.kt Maven / Gradle / Ivy

There is a newer version: 1.3.77
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.bedrockagent.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Contains configurations for an input to a node.
 */
public class FlowNodeInput private constructor(builder: Builder) {
    /**
     * An expression that formats the input for the node. For an explanation of how to create expressions, see [Expressions in Prompt flows in Amazon Bedrock](https://docs.aws.amazon.com/bedrock/latest/userguide/flows-expressions.html).
     */
    public val expression: kotlin.String = requireNotNull(builder.expression) { "A non-null value must be provided for expression" }
    /**
     * A name for the input that you can reference.
     */
    public val name: kotlin.String = requireNotNull(builder.name) { "A non-null value must be provided for name" }
    /**
     * The data type of the input. If the input doesn't match this type at runtime, a validation error will be thrown.
     */
    public val type: aws.sdk.kotlin.services.bedrockagent.model.FlowNodeIoDataType = requireNotNull(builder.type) { "A non-null value must be provided for type" }

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

    override fun toString(): kotlin.String = buildString {
        append("FlowNodeInput(")
        append("expression=*** Sensitive Data Redacted ***,")
        append("name=$name,")
        append("type=$type")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = expression.hashCode()
        result = 31 * result + (name.hashCode())
        result = 31 * result + (type.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 FlowNodeInput

        if (expression != other.expression) return false
        if (name != other.name) return false
        if (type != other.type) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * An expression that formats the input for the node. For an explanation of how to create expressions, see [Expressions in Prompt flows in Amazon Bedrock](https://docs.aws.amazon.com/bedrock/latest/userguide/flows-expressions.html).
         */
        public var expression: kotlin.String? = null
        /**
         * A name for the input that you can reference.
         */
        public var name: kotlin.String? = null
        /**
         * The data type of the input. If the input doesn't match this type at runtime, a validation error will be thrown.
         */
        public var type: aws.sdk.kotlin.services.bedrockagent.model.FlowNodeIoDataType? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.bedrockagent.model.FlowNodeInput) : this() {
            this.expression = x.expression
            this.name = x.name
            this.type = x.type
        }

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

        internal fun correctErrors(): Builder {
            if (expression == null) expression = ""
            if (name == null) name = ""
            if (type == null) type = FlowNodeIoDataType.SdkUnknown("no value provided")
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy