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

com.pulumi.aws.connect.kotlin.inputs.QuickConnectQuickConnectConfigQueueConfigArgs.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.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.connect.kotlin.inputs

import com.pulumi.aws.connect.inputs.QuickConnectQuickConnectConfigQueueConfigArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property contactFlowId Specifies the identifier of the contact flow.
 * @property queueId Specifies the identifier for the queue.
 */
public data class QuickConnectQuickConnectConfigQueueConfigArgs(
    public val contactFlowId: Output,
    public val queueId: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.connect.inputs.QuickConnectQuickConnectConfigQueueConfigArgs = com.pulumi.aws.connect.inputs.QuickConnectQuickConnectConfigQueueConfigArgs.builder()
        .contactFlowId(contactFlowId.applyValue({ args0 -> args0 }))
        .queueId(queueId.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [QuickConnectQuickConnectConfigQueueConfigArgs].
 */
@PulumiTagMarker
public class QuickConnectQuickConnectConfigQueueConfigArgsBuilder internal constructor() {
    private var contactFlowId: Output? = null

    private var queueId: Output? = null

    /**
     * @param value Specifies the identifier of the contact flow.
     */
    @JvmName("evfpymiukgmrguiy")
    public suspend fun contactFlowId(`value`: Output) {
        this.contactFlowId = value
    }

    /**
     * @param value Specifies the identifier for the queue.
     */
    @JvmName("iokgdxjufsrhaujl")
    public suspend fun queueId(`value`: Output) {
        this.queueId = value
    }

    /**
     * @param value Specifies the identifier of the contact flow.
     */
    @JvmName("fprsivawohbunluh")
    public suspend fun contactFlowId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.contactFlowId = mapped
    }

    /**
     * @param value Specifies the identifier for the queue.
     */
    @JvmName("eutrurdcdqpdvftk")
    public suspend fun queueId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.queueId = mapped
    }

    internal fun build(): QuickConnectQuickConnectConfigQueueConfigArgs =
        QuickConnectQuickConnectConfigQueueConfigArgs(
            contactFlowId = contactFlowId ?: throw PulumiNullFieldException("contactFlowId"),
            queueId = queueId ?: throw PulumiNullFieldException("queueId"),
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy