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

commonMain.aws.sdk.kotlin.services.databrew.model.UpdateRecipeRequest.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.databrew.model



public class UpdateRecipeRequest private constructor(builder: Builder) {
    /**
     * A description of the recipe.
     */
    public val description: kotlin.String? = builder.description
    /**
     * The name of the recipe to be updated.
     */
    public val name: kotlin.String? = requireNotNull(builder.name) { "A non-null value must be provided for name" }
    /**
     * One or more steps to be performed by the recipe. Each step consists of an action, and the conditions under which the action should succeed.
     */
    public val steps: List? = builder.steps

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

    override fun toString(): kotlin.String = buildString {
        append("UpdateRecipeRequest(")
        append("description=$description,")
        append("name=$name,")
        append("steps=$steps)")
    }

    override fun hashCode(): kotlin.Int {
        var result = description?.hashCode() ?: 0
        result = 31 * result + (name?.hashCode() ?: 0)
        result = 31 * result + (steps?.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 UpdateRecipeRequest

        if (description != other.description) return false
        if (name != other.name) return false
        if (steps != other.steps) return false

        return true
    }

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

    public class Builder {
        /**
         * A description of the recipe.
         */
        public var description: kotlin.String? = null
        /**
         * The name of the recipe to be updated.
         */
        public var name: kotlin.String? = null
        /**
         * One or more steps to be performed by the recipe. Each step consists of an action, and the conditions under which the action should succeed.
         */
        public var steps: List? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.databrew.model.UpdateRecipeRequest) : this() {
            this.description = x.description
            this.name = x.name
            this.steps = x.steps
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.databrew.model.UpdateRecipeRequest = UpdateRecipeRequest(this)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy