![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.eventgrid.kotlin.outputs.GetDomainInputMappingField.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.String
import kotlin.Suppress
/**
*
* @property dataVersion Specifies the default data version of the EventGrid Event associated with the domain.
* @property eventTime Specifies the event time of the EventGrid Event associated with the domain.
* @property eventType Specifies the default event type of the EventGrid Event associated with the domain.
* @property id Specifies the id of the EventGrid Event associated with the domain.
* @property subject Specifies the default subject of the EventGrid Event associated with the domain.
* @property topic Specifies the topic of the EventGrid Event associated with the domain.
*/
public data class GetDomainInputMappingField(
public val dataVersion: String,
public val eventTime: String,
public val eventType: String,
public val id: String,
public val subject: String,
public val topic: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.eventgrid.outputs.GetDomainInputMappingField): GetDomainInputMappingField = GetDomainInputMappingField(
dataVersion = javaType.dataVersion(),
eventTime = javaType.eventTime(),
eventType = javaType.eventType(),
id = javaType.id(),
subject = javaType.subject(),
topic = javaType.topic(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy