commonMain.aws.sdk.kotlin.services.iotwireless.model.PutPositionConfigurationRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iotwireless-jvm Show documentation
Show all versions of iotwireless-jvm Show documentation
The AWS Kotlin client for IoT Wireless
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.iotwireless.model
import aws.smithy.kotlin.runtime.SdkDsl
@Deprecated("This operation is no longer supported.")
public class PutPositionConfigurationRequest 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 used to update the position configuration.
*/
public val resourceIdentifier: kotlin.String? = builder.resourceIdentifier
/**
* Resource type of the resource for which you want to update the position configuration.
*/
public val resourceType: aws.sdk.kotlin.services.iotwireless.model.PositionResourceType? = builder.resourceType
/**
* The positioning solvers used to update the position configuration of the resource.
*/
public val solvers: aws.sdk.kotlin.services.iotwireless.model.PositionSolverConfigurations? = builder.solvers
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.iotwireless.model.PutPositionConfigurationRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("PutPositionConfigurationRequest(")
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 PutPositionConfigurationRequest
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.PutPositionConfigurationRequest = 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 used to update the position configuration.
*/
public var resourceIdentifier: kotlin.String? = null
/**
* Resource type of the resource for which you want to update the position configuration.
*/
public var resourceType: aws.sdk.kotlin.services.iotwireless.model.PositionResourceType? = null
/**
* The positioning solvers used to update the position configuration of the resource.
*/
public var solvers: aws.sdk.kotlin.services.iotwireless.model.PositionSolverConfigurations? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.iotwireless.model.PutPositionConfigurationRequest) : 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.PutPositionConfigurationRequest = PutPositionConfigurationRequest(this)
/**
* construct an [aws.sdk.kotlin.services.iotwireless.model.PositionSolverConfigurations] inside the given [block]
*/
public fun solvers(block: aws.sdk.kotlin.services.iotwireless.model.PositionSolverConfigurations.Builder.() -> kotlin.Unit) {
this.solvers = aws.sdk.kotlin.services.iotwireless.model.PositionSolverConfigurations.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy