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

commonMain.aws.sdk.kotlin.services.datapipeline.model.ParameterValue.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.datapipeline.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * A value or list of parameter values.
 */
public class ParameterValue private constructor(builder: Builder) {
    /**
     * The ID of the parameter value.
     */
    public val id: kotlin.String = requireNotNull(builder.id) { "A non-null value must be provided for id" }
    /**
     * The field value, expressed as a String.
     */
    public val stringValue: kotlin.String = requireNotNull(builder.stringValue) { "A non-null value must be provided for stringValue" }

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

    override fun toString(): kotlin.String = buildString {
        append("ParameterValue(")
        append("id=$id,")
        append("stringValue=$stringValue")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = id.hashCode()
        result = 31 * result + (stringValue.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 ParameterValue

        if (id != other.id) return false
        if (stringValue != other.stringValue) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The ID of the parameter value.
         */
        public var id: kotlin.String? = null
        /**
         * The field value, expressed as a String.
         */
        public var stringValue: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.datapipeline.model.ParameterValue) : this() {
            this.id = x.id
            this.stringValue = x.stringValue
        }

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

        internal fun correctErrors(): Builder {
            if (id == null) id = ""
            if (stringValue == null) stringValue = ""
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy