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

com.pulumi.azure.eventhub.kotlin.inputs.EventGridTopicInputMappingDefaultValuesArgs.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.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("gupgaupminpvfcha")
    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("amnhlyfsuiklrkus")
    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("jnawnecdohrkpsjd")
    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("hosuxydvctvsxkke")
    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("sxvcjycocpaitmrg")
    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("dspernfhcmtgffsr")
    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