interface OutboundCallerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnQueuePropsMixin.OutboundCallerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnQueuePropsMixin_OutboundCallerConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnQueuePropsMixin.OutboundCallerConfigProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnQueuePropsMixin.OutboundCallerConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnQueuePropsMixin » 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 { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const outboundCallerConfigProperty: connect_mixins.CfnQueuePropsMixin.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