![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.eventgrid.kotlin.outputs.EventSubscriptionStorageQueueEndpoint.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.eventgrid.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property queueMessageTimeToLiveInSeconds Storage queue message time to live in seconds.
* @property queueName Specifies the name of the storage queue where the Event Subscription will receive events.
* @property storageAccountId Specifies the id of the storage account id where the storage queue is located.
*/
public data class EventSubscriptionStorageQueueEndpoint(
public val queueMessageTimeToLiveInSeconds: Int? = null,
public val queueName: String,
public val storageAccountId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.eventgrid.outputs.EventSubscriptionStorageQueueEndpoint): EventSubscriptionStorageQueueEndpoint = EventSubscriptionStorageQueueEndpoint(
queueMessageTimeToLiveInSeconds = javaType.queueMessageTimeToLiveInSeconds().map({ args0 ->
args0
}).orElse(null),
queueName = javaType.queueName(),
storageAccountId = javaType.storageAccountId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy