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

commonMain.aws.sdk.kotlin.services.timestreamwrite.model.PartitionKey.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.timestreamwrite.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * An attribute used in partitioning data in a table. A dimension key partitions data using the values of the dimension specified by the dimension-name as partition key, while a measure key partitions data using measure names (values of the 'measure_name' column).
 */
public class PartitionKey private constructor(builder: Builder) {
    /**
     * The level of enforcement for the specification of a dimension key in ingested records. Options are REQUIRED (dimension key must be specified) and OPTIONAL (dimension key does not have to be specified).
     */
    public val enforcementInRecord: aws.sdk.kotlin.services.timestreamwrite.model.PartitionKeyEnforcementLevel? = builder.enforcementInRecord
    /**
     * The name of the attribute used for a dimension key.
     */
    public val name: kotlin.String? = builder.name
    /**
     * The type of the partition key. Options are DIMENSION (dimension key) and MEASURE (measure key).
     */
    public val type: aws.sdk.kotlin.services.timestreamwrite.model.PartitionKeyType = requireNotNull(builder.type) { "A non-null value must be provided for type" }

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

    override fun toString(): kotlin.String = buildString {
        append("PartitionKey(")
        append("enforcementInRecord=$enforcementInRecord,")
        append("name=$name,")
        append("type=$type")
        append(")")
    }

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

        if (enforcementInRecord != other.enforcementInRecord) return false
        if (name != other.name) return false
        if (type != other.type) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The level of enforcement for the specification of a dimension key in ingested records. Options are REQUIRED (dimension key must be specified) and OPTIONAL (dimension key does not have to be specified).
         */
        public var enforcementInRecord: aws.sdk.kotlin.services.timestreamwrite.model.PartitionKeyEnforcementLevel? = null
        /**
         * The name of the attribute used for a dimension key.
         */
        public var name: kotlin.String? = null
        /**
         * The type of the partition key. Options are DIMENSION (dimension key) and MEASURE (measure key).
         */
        public var type: aws.sdk.kotlin.services.timestreamwrite.model.PartitionKeyType? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.timestreamwrite.model.PartitionKey) : this() {
            this.enforcementInRecord = x.enforcementInRecord
            this.name = x.name
            this.type = x.type
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy