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

aws.sdk.kotlin.services.sagemaker.model.DescribeFlowDefinitionRequest.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.sagemaker.model



class DescribeFlowDefinitionRequest private constructor(builder: BuilderImpl) {
    /**
     * The name of the flow definition.
     */
    val flowDefinitionName: String? = builder.flowDefinitionName

    companion object {
        @JvmStatic
        fun fluentBuilder(): FluentBuilder = BuilderImpl()

        internal fun builder(): DslBuilder = BuilderImpl()

        operator fun invoke(block: DslBuilder.() -> kotlin.Unit): DescribeFlowDefinitionRequest = BuilderImpl().apply(block).build()

    }

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

    override fun hashCode(): kotlin.Int {
        var result = flowDefinitionName?.hashCode() ?: 0
        return result
    }

    override fun equals(other: kotlin.Any?): kotlin.Boolean {
        if (this === other) return true
        if (javaClass != other?.javaClass) return false

        other as DescribeFlowDefinitionRequest

        if (flowDefinitionName != other.flowDefinitionName) return false

        return true
    }

    fun copy(block: DslBuilder.() -> kotlin.Unit = {}): DescribeFlowDefinitionRequest = BuilderImpl(this).apply(block).build()

    interface FluentBuilder {
        fun build(): DescribeFlowDefinitionRequest
        /**
         * The name of the flow definition.
         */
        fun flowDefinitionName(flowDefinitionName: String): FluentBuilder
    }

    interface DslBuilder {
        /**
         * The name of the flow definition.
         */
        var flowDefinitionName: String?

        fun build(): DescribeFlowDefinitionRequest
    }

    private class BuilderImpl() : FluentBuilder, DslBuilder {
        override var flowDefinitionName: String? = null

        constructor(x: DescribeFlowDefinitionRequest) : this() {
            this.flowDefinitionName = x.flowDefinitionName
        }

        override fun build(): DescribeFlowDefinitionRequest = DescribeFlowDefinitionRequest(this)
        override fun flowDefinitionName(flowDefinitionName: String): FluentBuilder = apply { this.flowDefinitionName = flowDefinitionName }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy