![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.devices.kotlin.outputs.FeedbackPropertiesResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.devices.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
* The properties of the feedback queue for cloud-to-device messages.
* @property lockDurationAsIso8601 The lock duration for the feedback queue. See: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-messaging#cloud-to-device-messages.
* @property maxDeliveryCount The number of times the IoT hub attempts to deliver a message on the feedback queue. See: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-messaging#cloud-to-device-messages.
* @property ttlAsIso8601 The period of time for which a message is available to consume before it is expired by the IoT hub. See: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-messaging#cloud-to-device-messages.
*/
public data class FeedbackPropertiesResponse(
public val lockDurationAsIso8601: String? = null,
public val maxDeliveryCount: Int? = null,
public val ttlAsIso8601: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.devices.outputs.FeedbackPropertiesResponse): FeedbackPropertiesResponse = FeedbackPropertiesResponse(
lockDurationAsIso8601 = javaType.lockDurationAsIso8601().map({ args0 -> args0 }).orElse(null),
maxDeliveryCount = javaType.maxDeliveryCount().map({ args0 -> args0 }).orElse(null),
ttlAsIso8601 = javaType.ttlAsIso8601().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy