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

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

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

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

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * The definition of the nodes and connections between nodes in the flow.
 */
public class FlowDefinition private constructor(builder: Builder) {
    /**
     * An array of connection definitions in the flow.
     */
    public val connections: List? = builder.connections
    /**
     * An array of node definitions in the flow.
     */
    public val nodes: List? = builder.nodes

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

    override fun toString(): kotlin.String = buildString {
        append("FlowDefinition(")
        append("connections=$connections,")
        append("nodes=*** Sensitive Data Redacted ***")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = connections?.hashCode() ?: 0
        result = 31 * result + (nodes?.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 FlowDefinition

        if (connections != other.connections) return false
        if (nodes != other.nodes) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * An array of connection definitions in the flow.
         */
        public var connections: List? = null
        /**
         * An array of node definitions in the flow.
         */
        public var nodes: List? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.bedrockagent.model.FlowDefinition) : this() {
            this.connections = x.connections
            this.nodes = x.nodes
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy