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

commonMain.aws.sdk.kotlin.services.iotfleetwise.model.SignalInformation.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.iotfleetwise.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Information about a signal.
 */
public class SignalInformation private constructor(builder: Builder) {
    /**
     * The maximum number of samples to collect.
     */
    public val maxSampleCount: kotlin.Long? = builder.maxSampleCount
    /**
     * The minimum duration of time (in milliseconds) between two triggering events to collect data.
     *
     * If a signal changes often, you might want to collect data at a slower rate.
     */
    public val minimumSamplingIntervalMs: kotlin.Long? = builder.minimumSamplingIntervalMs
    /**
     * The name of the signal.
     */
    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.iotfleetwise.model.SignalInformation = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("SignalInformation(")
        append("maxSampleCount=$maxSampleCount,")
        append("minimumSamplingIntervalMs=$minimumSamplingIntervalMs,")
        append("name=$name")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = maxSampleCount?.hashCode() ?: 0
        result = 31 * result + (minimumSamplingIntervalMs?.hashCode() ?: 0)
        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 SignalInformation

        if (maxSampleCount != other.maxSampleCount) return false
        if (minimumSamplingIntervalMs != other.minimumSamplingIntervalMs) return false
        if (name != other.name) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The maximum number of samples to collect.
         */
        public var maxSampleCount: kotlin.Long? = null
        /**
         * The minimum duration of time (in milliseconds) between two triggering events to collect data.
         *
         * If a signal changes often, you might want to collect data at a slower rate.
         */
        public var minimumSamplingIntervalMs: kotlin.Long? = null
        /**
         * The name of the signal.
         */
        public var name: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.iotfleetwise.model.SignalInformation) : this() {
            this.maxSampleCount = x.maxSampleCount
            this.minimumSamplingIntervalMs = x.minimumSamplingIntervalMs
            this.name = x.name
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy