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

com.pulumi.aws.connect.kotlin.inputs.QueueOutboundCallerConfigArgs.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.QueueOutboundCallerConfigArgs.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 outboundCallerIdName Specifies the caller ID name.
 * @property outboundCallerIdNumberId Specifies the caller ID number.
 * @property outboundFlowId Specifies outbound whisper flow to be used during an outbound call.
 */
public data class QueueOutboundCallerConfigArgs(
    public val outboundCallerIdName: Output? = null,
    public val outboundCallerIdNumberId: Output? = null,
    public val outboundFlowId: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.connect.inputs.QueueOutboundCallerConfigArgs =
        com.pulumi.aws.connect.inputs.QueueOutboundCallerConfigArgs.builder()
            .outboundCallerIdName(outboundCallerIdName?.applyValue({ args0 -> args0 }))
            .outboundCallerIdNumberId(outboundCallerIdNumberId?.applyValue({ args0 -> args0 }))
            .outboundFlowId(outboundFlowId?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [QueueOutboundCallerConfigArgs].
 */
@PulumiTagMarker
public class QueueOutboundCallerConfigArgsBuilder internal constructor() {
    private var outboundCallerIdName: Output? = null

    private var outboundCallerIdNumberId: Output? = null

    private var outboundFlowId: Output? = null

    /**
     * @param value Specifies the caller ID name.
     */
    @JvmName("kbfhfqedpeheyuus")
    public suspend fun outboundCallerIdName(`value`: Output) {
        this.outboundCallerIdName = value
    }

    /**
     * @param value Specifies the caller ID number.
     */
    @JvmName("prcgrypakjaedbak")
    public suspend fun outboundCallerIdNumberId(`value`: Output) {
        this.outboundCallerIdNumberId = value
    }

    /**
     * @param value Specifies outbound whisper flow to be used during an outbound call.
     */
    @JvmName("nqwbxqucxvrcgijs")
    public suspend fun outboundFlowId(`value`: Output) {
        this.outboundFlowId = value
    }

    /**
     * @param value Specifies the caller ID name.
     */
    @JvmName("fowsvmqyhaymeqxn")
    public suspend fun outboundCallerIdName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.outboundCallerIdName = mapped
    }

    /**
     * @param value Specifies the caller ID number.
     */
    @JvmName("nbjatslpnocumajb")
    public suspend fun outboundCallerIdNumberId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.outboundCallerIdNumberId = mapped
    }

    /**
     * @param value Specifies outbound whisper flow to be used during an outbound call.
     */
    @JvmName("ctrdybuktmchpgpo")
    public suspend fun outboundFlowId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.outboundFlowId = mapped
    }

    internal fun build(): QueueOutboundCallerConfigArgs = QueueOutboundCallerConfigArgs(
        outboundCallerIdName = outboundCallerIdName,
        outboundCallerIdNumberId = outboundCallerIdNumberId,
        outboundFlowId = outboundFlowId,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy