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

commonMain.aws.sdk.kotlin.services.timestreamquery.model.DimensionMapping.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.timestreamquery.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * This type is used to map column(s) from the query result to a dimension in the destination table.
 */
public class DimensionMapping private constructor(builder: Builder) {
    /**
     * Type for the dimension.
     */
    public val dimensionValueType: aws.sdk.kotlin.services.timestreamquery.model.DimensionValueType = requireNotNull(builder.dimensionValueType) { "A non-null value must be provided for dimensionValueType" }
    /**
     * Column name from query result.
     */
    public val name: kotlin.String = requireNotNull(builder.name) { "A non-null value must be provided for name" }

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

    override fun toString(): kotlin.String = buildString {
        append("DimensionMapping(")
        append("dimensionValueType=$dimensionValueType,")
        append("name=$name")
        append(")")
    }

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

        if (dimensionValueType != other.dimensionValueType) return false
        if (name != other.name) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * Type for the dimension.
         */
        public var dimensionValueType: aws.sdk.kotlin.services.timestreamquery.model.DimensionValueType? = null
        /**
         * Column name from query result.
         */
        public var name: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.timestreamquery.model.DimensionMapping) : this() {
            this.dimensionValueType = x.dimensionValueType
            this.name = x.name
        }

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

        internal fun correctErrors(): Builder {
            if (dimensionValueType == null) dimensionValueType = DimensionValueType.SdkUnknown("no value provided")
            if (name == null) name = ""
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy