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

com.pulumi.awsnative.quicksight.kotlin.inputs.TopicNegativeFormatArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.quicksight.kotlin.inputs

import com.pulumi.awsnative.quicksight.inputs.TopicNegativeFormatArgs.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 prefix The prefix for a negative format.
 * @property suffix The suffix for a negative format.
 */
public data class TopicNegativeFormatArgs(
    public val prefix: Output? = null,
    public val suffix: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.TopicNegativeFormatArgs =
        com.pulumi.awsnative.quicksight.inputs.TopicNegativeFormatArgs.builder()
            .prefix(prefix?.applyValue({ args0 -> args0 }))
            .suffix(suffix?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [TopicNegativeFormatArgs].
 */
@PulumiTagMarker
public class TopicNegativeFormatArgsBuilder internal constructor() {
    private var prefix: Output? = null

    private var suffix: Output? = null

    /**
     * @param value The prefix for a negative format.
     */
    @JvmName("kgpiputtcwuyuuda")
    public suspend fun prefix(`value`: Output) {
        this.prefix = value
    }

    /**
     * @param value The suffix for a negative format.
     */
    @JvmName("xffltecgnqvrvcen")
    public suspend fun suffix(`value`: Output) {
        this.suffix = value
    }

    /**
     * @param value The prefix for a negative format.
     */
    @JvmName("qvrtovinewsecxdq")
    public suspend fun prefix(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.prefix = mapped
    }

    /**
     * @param value The suffix for a negative format.
     */
    @JvmName("qvdhampxficrmgso")
    public suspend fun suffix(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.suffix = mapped
    }

    internal fun build(): TopicNegativeFormatArgs = TopicNegativeFormatArgs(
        prefix = prefix,
        suffix = suffix,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy