interface OutboundCallerConfigProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Connect.CfnQueue.OutboundCallerConfigProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnQueue_OutboundCallerConfigProperty | 
  Java | software.amazon.awscdk.services.connect.CfnQueue.OutboundCallerConfigProperty | 
  Python | aws_cdk.aws_connect.CfnQueue.OutboundCallerConfigProperty | 
  TypeScript  | aws-cdk-lib » aws_connect » CfnQueue » OutboundCallerConfigProperty | 
The outbound caller ID name, number, and outbound whisper flow.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from 'aws-cdk-lib';
const outboundCallerConfigProperty: connect.CfnQueue.OutboundCallerConfigProperty = {
  outboundCallerIdName: 'outboundCallerIdName',
  outboundCallerIdNumberArn: 'outboundCallerIdNumberArn',
  outboundFlowArn: 'outboundFlowArn',
};
Properties
| Name | Type | Description | 
|---|---|---|
| outbound | string | The caller ID name. | 
| outbound | string | The Amazon Resource Name (ARN) of the outbound caller ID number. | 
| outbound | string | The Amazon Resource Name (ARN) of the outbound flow. | 
outboundCallerIdName?
Type:
string
(optional)
The caller ID name.
outboundCallerIdNumberArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the outbound caller ID number.
Only use the phone number ARN format that doesn't contain
instancein 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 API.
outboundFlowArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the outbound flow.

 .NET
 Go
 Java
 Python
 TypeScript