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

com.pulumi.awsnative.connect.kotlin.PromptArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.connect.kotlin

import com.pulumi.awsnative.connect.PromptArgs.builder
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 * Resource Type definition for AWS::Connect::Prompt
 * @property description The description of the prompt.
 * @property instanceArn The identifier of the Amazon Connect instance.
 * @property name The name of the prompt.
 * @property s3Uri S3 URI of the customer's audio file for creating prompts resource..
 * @property tags An array of key-value pairs to apply to this resource.
 */
public data class PromptArgs(
    public val description: Output? = null,
    public val instanceArn: Output? = null,
    public val name: Output? = null,
    public val s3Uri: Output? = null,
    public val tags: Output>? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.connect.PromptArgs =
        com.pulumi.awsnative.connect.PromptArgs.builder()
            .description(description?.applyValue({ args0 -> args0 }))
            .instanceArn(instanceArn?.applyValue({ args0 -> args0 }))
            .name(name?.applyValue({ args0 -> args0 }))
            .s3Uri(s3Uri?.applyValue({ args0 -> args0 }))
            .tags(
                tags?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            ).build()
}

/**
 * Builder for [PromptArgs].
 */
@PulumiTagMarker
public class PromptArgsBuilder internal constructor() {
    private var description: Output? = null

    private var instanceArn: Output? = null

    private var name: Output? = null

    private var s3Uri: Output? = null

    private var tags: Output>? = null

    /**
     * @param value The description of the prompt.
     */
    @JvmName("ihljmllaoahdhjmt")
    public suspend fun description(`value`: Output) {
        this.description = value
    }

    /**
     * @param value The identifier of the Amazon Connect instance.
     */
    @JvmName("bgamchgadtxlsatj")
    public suspend fun instanceArn(`value`: Output) {
        this.instanceArn = value
    }

    /**
     * @param value The name of the prompt.
     */
    @JvmName("ykifhtprhnhqbfft")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value S3 URI of the customer's audio file for creating prompts resource..
     */
    @JvmName("eylqcfqrpyfpvowe")
    public suspend fun s3Uri(`value`: Output) {
        this.s3Uri = value
    }

    /**
     * @param value An array of key-value pairs to apply to this resource.
     */
    @JvmName("diotpdkaulixlbhk")
    public suspend fun tags(`value`: Output>) {
        this.tags = value
    }

    @JvmName("kyipieiwqhphyrdq")
    public suspend fun tags(vararg values: Output) {
        this.tags = Output.all(values.asList())
    }

    /**
     * @param values An array of key-value pairs to apply to this resource.
     */
    @JvmName("xtyquahcjcsgkdvw")
    public suspend fun tags(values: List>) {
        this.tags = Output.all(values)
    }

    /**
     * @param value The description of the prompt.
     */
    @JvmName("gytqjcsxdpjhnbxe")
    public suspend fun description(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.description = mapped
    }

    /**
     * @param value The identifier of the Amazon Connect instance.
     */
    @JvmName("snwkkopqxchyivfv")
    public suspend fun instanceArn(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.instanceArn = mapped
    }

    /**
     * @param value The name of the prompt.
     */
    @JvmName("kudvfrwmabkjhuia")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value S3 URI of the customer's audio file for creating prompts resource..
     */
    @JvmName("ejyrtwnulqaeelqk")
    public suspend fun s3Uri(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.s3Uri = mapped
    }

    /**
     * @param value An array of key-value pairs to apply to this resource.
     */
    @JvmName("cdeykhsigcebwoth")
    public suspend fun tags(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param argument An array of key-value pairs to apply to this resource.
     */
    @JvmName("wgtynwgayumuhjil")
    public suspend fun tags(argument: List Unit>) {
        val toBeMapped = argument.toList().map { TagArgsBuilder().applySuspend { it() }.build() }
        val mapped = of(toBeMapped)
        this.tags = mapped
    }

    /**
     * @param argument An array of key-value pairs to apply to this resource.
     */
    @JvmName("vqyhguocixaqiprn")
    public suspend fun tags(vararg argument: suspend TagArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map { TagArgsBuilder().applySuspend { it() }.build() }
        val mapped = of(toBeMapped)
        this.tags = mapped
    }

    /**
     * @param argument An array of key-value pairs to apply to this resource.
     */
    @JvmName("muvkxorrxuaydfkh")
    public suspend fun tags(argument: suspend TagArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(TagArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.tags = mapped
    }

    /**
     * @param values An array of key-value pairs to apply to this resource.
     */
    @JvmName("mogjmhlxbwlpqhlo")
    public suspend fun tags(vararg values: TagArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    internal fun build(): PromptArgs = PromptArgs(
        description = description,
        instanceArn = instanceArn,
        name = name,
        s3Uri = s3Uri,
        tags = tags,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy