commonMain.aws.sdk.kotlin.services.iotwireless.model.MessageDeliveryStatusEventConfiguration.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
/**
* Message delivery status event configuration object for enabling and disabling relevant topics.
*/
public class MessageDeliveryStatusEventConfiguration private constructor(builder: Builder) {
/**
* `SidewalkEventNotificationConfigurations` object, which is the event configuration object for Sidewalk-related event topics.
*/
public val sidewalk: aws.sdk.kotlin.services.iotwireless.model.SidewalkEventNotificationConfigurations? = builder.sidewalk
/**
* Denotes whether the wireless device ID message delivery status event topic is enabled or disabled.
*/
public val wirelessDeviceIdEventTopic: aws.sdk.kotlin.services.iotwireless.model.EventNotificationTopicStatus? = builder.wirelessDeviceIdEventTopic
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.iotwireless.model.MessageDeliveryStatusEventConfiguration = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("MessageDeliveryStatusEventConfiguration(")
append("sidewalk=$sidewalk,")
append("wirelessDeviceIdEventTopic=$wirelessDeviceIdEventTopic")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = sidewalk?.hashCode() ?: 0
result = 31 * result + (wirelessDeviceIdEventTopic?.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 MessageDeliveryStatusEventConfiguration
if (sidewalk != other.sidewalk) return false
if (wirelessDeviceIdEventTopic != other.wirelessDeviceIdEventTopic) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.iotwireless.model.MessageDeliveryStatusEventConfiguration = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* `SidewalkEventNotificationConfigurations` object, which is the event configuration object for Sidewalk-related event topics.
*/
public var sidewalk: aws.sdk.kotlin.services.iotwireless.model.SidewalkEventNotificationConfigurations? = null
/**
* Denotes whether the wireless device ID message delivery status event topic is enabled or disabled.
*/
public var wirelessDeviceIdEventTopic: aws.sdk.kotlin.services.iotwireless.model.EventNotificationTopicStatus? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.iotwireless.model.MessageDeliveryStatusEventConfiguration) : this() {
this.sidewalk = x.sidewalk
this.wirelessDeviceIdEventTopic = x.wirelessDeviceIdEventTopic
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.iotwireless.model.MessageDeliveryStatusEventConfiguration = MessageDeliveryStatusEventConfiguration(this)
/**
* construct an [aws.sdk.kotlin.services.iotwireless.model.SidewalkEventNotificationConfigurations] inside the given [block]
*/
public fun sidewalk(block: aws.sdk.kotlin.services.iotwireless.model.SidewalkEventNotificationConfigurations.Builder.() -> kotlin.Unit) {
this.sidewalk = aws.sdk.kotlin.services.iotwireless.model.SidewalkEventNotificationConfigurations.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy