![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.connect.kotlin.outputs.QueueOutboundCallerConfig.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.connect.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The outbound caller ID name, number, and outbound whisper flow.
* @property outboundCallerIdName The caller ID name.
* @property outboundCallerIdNumberArn The Amazon Resource Name (ARN) of the outbound caller ID number.
* > Only use the phone number ARN format that doesn't contain `instance` in the path, for example, `arn:aws:connect:us-east-1:1234567890:phone-number/uuid` . This is the same ARN format that is returned when you create a phone number using CloudFormation , or when you call the [ListPhoneNumbersV2](https://docs.aws.amazon.com/connect/latest/APIReference/API_ListPhoneNumbersV2.html) API.
* @property outboundFlowArn The Amazon Resource Name (ARN) of the outbound flow.
*/
public data class QueueOutboundCallerConfig(
public val outboundCallerIdName: String? = null,
public val outboundCallerIdNumberArn: String? = null,
public val outboundFlowArn: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.connect.outputs.QueueOutboundCallerConfig): QueueOutboundCallerConfig = QueueOutboundCallerConfig(
outboundCallerIdName = javaType.outboundCallerIdName().map({ args0 -> args0 }).orElse(null),
outboundCallerIdNumberArn = javaType.outboundCallerIdNumberArn().map({ args0 ->
args0
}).orElse(null),
outboundFlowArn = javaType.outboundFlowArn().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy