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

commonMain.aws.sdk.kotlin.services.iotwireless.model.PositionConfigurationItem.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.iotwireless.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * The wrapper for a position configuration.
 */
public class PositionConfigurationItem private constructor(builder: Builder) {
    /**
     * The position data destination that describes the AWS IoT rule that processes the device's position data for use by AWS IoT Core for LoRaWAN.
     */
    public val destination: kotlin.String? = builder.destination
    /**
     * Resource identifier for the position configuration.
     */
    public val resourceIdentifier: kotlin.String? = builder.resourceIdentifier
    /**
     * Resource type of the resource for the position configuration.
     */
    public val resourceType: aws.sdk.kotlin.services.iotwireless.model.PositionResourceType? = builder.resourceType
    /**
     * The details of the positioning solver object used to compute the location.
     */
    public val solvers: aws.sdk.kotlin.services.iotwireless.model.PositionSolverDetails? = builder.solvers

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

    override fun toString(): kotlin.String = buildString {
        append("PositionConfigurationItem(")
        append("destination=$destination,")
        append("resourceIdentifier=$resourceIdentifier,")
        append("resourceType=$resourceType,")
        append("solvers=$solvers")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = destination?.hashCode() ?: 0
        result = 31 * result + (resourceIdentifier?.hashCode() ?: 0)
        result = 31 * result + (resourceType?.hashCode() ?: 0)
        result = 31 * result + (solvers?.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 PositionConfigurationItem

        if (destination != other.destination) return false
        if (resourceIdentifier != other.resourceIdentifier) return false
        if (resourceType != other.resourceType) return false
        if (solvers != other.solvers) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The position data destination that describes the AWS IoT rule that processes the device's position data for use by AWS IoT Core for LoRaWAN.
         */
        public var destination: kotlin.String? = null
        /**
         * Resource identifier for the position configuration.
         */
        public var resourceIdentifier: kotlin.String? = null
        /**
         * Resource type of the resource for the position configuration.
         */
        public var resourceType: aws.sdk.kotlin.services.iotwireless.model.PositionResourceType? = null
        /**
         * The details of the positioning solver object used to compute the location.
         */
        public var solvers: aws.sdk.kotlin.services.iotwireless.model.PositionSolverDetails? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.iotwireless.model.PositionConfigurationItem) : this() {
            this.destination = x.destination
            this.resourceIdentifier = x.resourceIdentifier
            this.resourceType = x.resourceType
            this.solvers = x.solvers
        }

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

        /**
         * construct an [aws.sdk.kotlin.services.iotwireless.model.PositionSolverDetails] inside the given [block]
         */
        public fun solvers(block: aws.sdk.kotlin.services.iotwireless.model.PositionSolverDetails.Builder.() -> kotlin.Unit) {
            this.solvers = aws.sdk.kotlin.services.iotwireless.model.PositionSolverDetails.invoke(block)
        }

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy