com.pulumi.azure.eventgrid.kotlin.outputs.GetDomainInputMappingDefaultValue.kt Maven / Gradle / Ivy
@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 eventType Specifies the default event type of the EventGrid Event associated with the domain.
* @property subject Specifies the default subject of the EventGrid Event associated with the domain.
*/
public data class GetDomainInputMappingDefaultValue(
public val dataVersion: String,
public val eventType: String,
public val subject: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.eventgrid.outputs.GetDomainInputMappingDefaultValue): GetDomainInputMappingDefaultValue = GetDomainInputMappingDefaultValue(
dataVersion = javaType.dataVersion(),
eventType = javaType.eventType(),
subject = javaType.subject(),
)
}
}