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

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

There is a newer version: 1.3.31
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

/**
 * Trace content for your wireless devices, gateways, and multicast groups.
 */
public class TraceContent private constructor(builder: Builder) {
    /**
     * The log level for a log message. The log levels can be disabled, or set to `ERROR` to display less verbose logs containing only error information, or to `INFO` for more detailed logs.
     */
    public val logLevel: aws.sdk.kotlin.services.iotwireless.model.LogLevel? = builder.logLevel
    /**
     * `FrameInfo` of your multicast group resources for the trace content. Use FrameInfo to debug the multicast communication between your multicast groups and the network server.
     */
    public val multicastFrameInfo: aws.sdk.kotlin.services.iotwireless.model.MulticastFrameInfo? = builder.multicastFrameInfo
    /**
     * `FrameInfo` of your wireless device resources for the trace content. Use FrameInfo to debug the communication between your LoRaWAN end devices and the network server.
     */
    public val wirelessDeviceFrameInfo: aws.sdk.kotlin.services.iotwireless.model.WirelessDeviceFrameInfo? = builder.wirelessDeviceFrameInfo

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

    override fun toString(): kotlin.String = buildString {
        append("TraceContent(")
        append("logLevel=$logLevel,")
        append("multicastFrameInfo=$multicastFrameInfo,")
        append("wirelessDeviceFrameInfo=$wirelessDeviceFrameInfo")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = logLevel?.hashCode() ?: 0
        result = 31 * result + (multicastFrameInfo?.hashCode() ?: 0)
        result = 31 * result + (wirelessDeviceFrameInfo?.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 TraceContent

        if (logLevel != other.logLevel) return false
        if (multicastFrameInfo != other.multicastFrameInfo) return false
        if (wirelessDeviceFrameInfo != other.wirelessDeviceFrameInfo) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The log level for a log message. The log levels can be disabled, or set to `ERROR` to display less verbose logs containing only error information, or to `INFO` for more detailed logs.
         */
        public var logLevel: aws.sdk.kotlin.services.iotwireless.model.LogLevel? = null
        /**
         * `FrameInfo` of your multicast group resources for the trace content. Use FrameInfo to debug the multicast communication between your multicast groups and the network server.
         */
        public var multicastFrameInfo: aws.sdk.kotlin.services.iotwireless.model.MulticastFrameInfo? = null
        /**
         * `FrameInfo` of your wireless device resources for the trace content. Use FrameInfo to debug the communication between your LoRaWAN end devices and the network server.
         */
        public var wirelessDeviceFrameInfo: aws.sdk.kotlin.services.iotwireless.model.WirelessDeviceFrameInfo? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.iotwireless.model.TraceContent) : this() {
            this.logLevel = x.logLevel
            this.multicastFrameInfo = x.multicastFrameInfo
            this.wirelessDeviceFrameInfo = x.wirelessDeviceFrameInfo
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy