
com.pulumi.awsnative.connectcampaigns.kotlin.outputs.CampaignProgressiveDialerConfig.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.connectcampaigns.kotlin.outputs
import kotlin.Double
import kotlin.Suppress
/**
* Progressive Dialer config
* @property bandwidthAllocation The bandwidth allocation of a queue resource.
* @property dialingCapacity Allocates dialing capacity for this campaign between multiple active campaigns.
*/
public data class CampaignProgressiveDialerConfig(
public val bandwidthAllocation: Double,
public val dialingCapacity: Double? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.connectcampaigns.outputs.CampaignProgressiveDialerConfig): CampaignProgressiveDialerConfig = CampaignProgressiveDialerConfig(
bandwidthAllocation = javaType.bandwidthAllocation(),
dialingCapacity = javaType.dialingCapacity().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy