commonMain.aws.sdk.kotlin.services.sagemakeredge.model.GetDeviceRegistrationResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sagemakeredge-jvm Show documentation
Show all versions of sagemakeredge-jvm Show documentation
The AWS SDK for Kotlin client for Sagemaker Edge
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.sagemakeredge.model
import aws.smithy.kotlin.runtime.SdkDsl
public class GetDeviceRegistrationResponse private constructor(builder: Builder) {
/**
* The amount of time, in seconds, that the registration status is stored on the device’s cache before it is refreshed.
*/
public val cacheTtl: kotlin.String? = builder.cacheTtl
/**
* Describes if the device is currently registered with SageMaker Edge Manager.
*/
public val deviceRegistration: kotlin.String? = builder.deviceRegistration
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.sagemakeredge.model.GetDeviceRegistrationResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetDeviceRegistrationResponse(")
append("cacheTtl=$cacheTtl,")
append("deviceRegistration=$deviceRegistration")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = cacheTtl?.hashCode() ?: 0
result = 31 * result + (deviceRegistration?.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 GetDeviceRegistrationResponse
if (cacheTtl != other.cacheTtl) return false
if (deviceRegistration != other.deviceRegistration) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.sagemakeredge.model.GetDeviceRegistrationResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The amount of time, in seconds, that the registration status is stored on the device’s cache before it is refreshed.
*/
public var cacheTtl: kotlin.String? = null
/**
* Describes if the device is currently registered with SageMaker Edge Manager.
*/
public var deviceRegistration: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.sagemakeredge.model.GetDeviceRegistrationResponse) : this() {
this.cacheTtl = x.cacheTtl
this.deviceRegistration = x.deviceRegistration
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.sagemakeredge.model.GetDeviceRegistrationResponse = GetDeviceRegistrationResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}