![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.eventgrid.kotlin.outputs.DomainInputMappingDefaultValues.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 to associate with the domain. Changing this forces a new resource to be created.
* @property eventType Specifies the default event type of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
* @property subject Specifies the default subject of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
*/
public data class DomainInputMappingDefaultValues(
public val dataVersion: String? = null,
public val eventType: String? = null,
public val subject: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.eventgrid.outputs.DomainInputMappingDefaultValues): DomainInputMappingDefaultValues = DomainInputMappingDefaultValues(
dataVersion = javaType.dataVersion().map({ args0 -> args0 }).orElse(null),
eventType = javaType.eventType().map({ args0 -> args0 }).orElse(null),
subject = javaType.subject().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy