commonMain.aws.sdk.kotlin.services.iotfleetwise.model.InvalidNetworkInterface.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iotfleetwise-jvm Show documentation
Show all versions of iotfleetwise-jvm Show documentation
The AWS SDK for Kotlin client for IoTFleetWise
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
/**
* A reason a vehicle network interface isn't valid.
*/
public class InvalidNetworkInterface private constructor(builder: Builder) {
/**
* The ID of the interface that isn't valid.
*/
public val interfaceId: kotlin.String? = builder.interfaceId
/**
* A message about why the interface isn't valid.
*/
public val reason: aws.sdk.kotlin.services.iotfleetwise.model.NetworkInterfaceFailureReason? = builder.reason
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.iotfleetwise.model.InvalidNetworkInterface = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("InvalidNetworkInterface(")
append("interfaceId=$interfaceId,")
append("reason=$reason")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = interfaceId?.hashCode() ?: 0
result = 31 * result + (reason?.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 InvalidNetworkInterface
if (interfaceId != other.interfaceId) return false
if (reason != other.reason) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.iotfleetwise.model.InvalidNetworkInterface = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ID of the interface that isn't valid.
*/
public var interfaceId: kotlin.String? = null
/**
* A message about why the interface isn't valid.
*/
public var reason: aws.sdk.kotlin.services.iotfleetwise.model.NetworkInterfaceFailureReason? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.iotfleetwise.model.InvalidNetworkInterface) : this() {
this.interfaceId = x.interfaceId
this.reason = x.reason
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.iotfleetwise.model.InvalidNetworkInterface = InvalidNetworkInterface(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy