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

commonMain.aws.sdk.kotlin.services.glue.model.WorkflowGraph.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.glue.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * A workflow graph represents the complete workflow containing all the Glue components present in the workflow and all the directed connections between them.
 */
public class WorkflowGraph private constructor(builder: Builder) {
    /**
     * A list of all the directed connections between the nodes belonging to the workflow.
     */
    public val edges: List? = builder.edges
    /**
     * A list of the the Glue components belong to the workflow represented as nodes.
     */
    public val nodes: List? = builder.nodes

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

    override fun toString(): kotlin.String = buildString {
        append("WorkflowGraph(")
        append("edges=$edges,")
        append("nodes=$nodes")
        append(")")
    }

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

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

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * A list of all the directed connections between the nodes belonging to the workflow.
         */
        public var edges: List? = null
        /**
         * A list of the the Glue components belong to the workflow represented as nodes.
         */
        public var nodes: List? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.glue.model.WorkflowGraph) : this() {
            this.edges = x.edges
            this.nodes = x.nodes
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy