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

com.pulumi.azure.eventgrid.kotlin.outputs.SystemTopicEventSubscriptionStorageQueueEndpoint.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@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 SystemTopicEventSubscriptionStorageQueueEndpoint(
    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.SystemTopicEventSubscriptionStorageQueueEndpoint): SystemTopicEventSubscriptionStorageQueueEndpoint =
            SystemTopicEventSubscriptionStorageQueueEndpoint(
                queueMessageTimeToLiveInSeconds = javaType.queueMessageTimeToLiveInSeconds().map({ args0 ->
                    args0
                }).orElse(null),
                queueName = javaType.queueName(),
                storageAccountId = javaType.storageAccountId(),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy