
com.pulumi.azure.eventhub.kotlin.inputs.EventGridTopicInputMappingDefaultValuesArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.eventhub.kotlin.inputs
import com.pulumi.azure.eventhub.inputs.EventGridTopicInputMappingDefaultValuesArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @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 EventGridTopicInputMappingDefaultValuesArgs(
public val dataVersion: Output? = null,
public val eventType: Output? = null,
public val subject: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.eventhub.inputs.EventGridTopicInputMappingDefaultValuesArgs =
com.pulumi.azure.eventhub.inputs.EventGridTopicInputMappingDefaultValuesArgs.builder()
.dataVersion(dataVersion?.applyValue({ args0 -> args0 }))
.eventType(eventType?.applyValue({ args0 -> args0 }))
.subject(subject?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [EventGridTopicInputMappingDefaultValuesArgs].
*/
@PulumiTagMarker
public class EventGridTopicInputMappingDefaultValuesArgsBuilder internal constructor() {
private var dataVersion: Output? = null
private var eventType: Output? = null
private var subject: Output? = null
/**
* @param value Specifies the default data version of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
*/
@JvmName("jogykhajchsmlrvw")
public suspend fun dataVersion(`value`: Output) {
this.dataVersion = value
}
/**
* @param value Specifies the default event type of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
*/
@JvmName("taifgmcyuguemcpo")
public suspend fun eventType(`value`: Output) {
this.eventType = value
}
/**
* @param value Specifies the default subject of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
*/
@JvmName("xuahlasduwuratea")
public suspend fun subject(`value`: Output) {
this.subject = value
}
/**
* @param value Specifies the default data version of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
*/
@JvmName("tkyyektgkfabmsse")
public suspend fun dataVersion(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.dataVersion = mapped
}
/**
* @param value Specifies the default event type of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
*/
@JvmName("xmggqtbbfvvimkhn")
public suspend fun eventType(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.eventType = mapped
}
/**
* @param value Specifies the default subject of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
*/
@JvmName("mdtorhnhnglpxryu")
public suspend fun subject(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.subject = mapped
}
internal fun build(): EventGridTopicInputMappingDefaultValuesArgs =
EventGridTopicInputMappingDefaultValuesArgs(
dataVersion = dataVersion,
eventType = eventType,
subject = subject,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy