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

com.pulumi.aws.chime.kotlin.inputs.SdkvoiceGlobalSettingsVoiceConnectorArgs.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.chime.kotlin.inputs

import com.pulumi.aws.chime.inputs.SdkvoiceGlobalSettingsVoiceConnectorArgs.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 cdrBucket The S3 bucket that stores the Voice Connector's call detail records.
 */
public data class SdkvoiceGlobalSettingsVoiceConnectorArgs(
    public val cdrBucket: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.chime.inputs.SdkvoiceGlobalSettingsVoiceConnectorArgs =
        com.pulumi.aws.chime.inputs.SdkvoiceGlobalSettingsVoiceConnectorArgs.builder()
            .cdrBucket(cdrBucket?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [SdkvoiceGlobalSettingsVoiceConnectorArgs].
 */
@PulumiTagMarker
public class SdkvoiceGlobalSettingsVoiceConnectorArgsBuilder internal constructor() {
    private var cdrBucket: Output? = null

    /**
     * @param value The S3 bucket that stores the Voice Connector's call detail records.
     */
    @JvmName("cdjyiyyutewjyysx")
    public suspend fun cdrBucket(`value`: Output) {
        this.cdrBucket = value
    }

    /**
     * @param value The S3 bucket that stores the Voice Connector's call detail records.
     */
    @JvmName("rqcfnipqcjqohwsy")
    public suspend fun cdrBucket(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.cdrBucket = mapped
    }

    internal fun build(): SdkvoiceGlobalSettingsVoiceConnectorArgs =
        SdkvoiceGlobalSettingsVoiceConnectorArgs(
            cdrBucket = cdrBucket,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy