Interface CfnQueue.OutboundCallerConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnQueue.OutboundCallerConfigProperty.Jsii$Proxy
- Enclosing class:
CfnQueue
@Stability(Stable)
public static interface CfnQueue.OutboundCallerConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.connect.*; OutboundCallerConfigProperty outboundCallerConfigProperty = OutboundCallerConfigProperty.builder() .outboundCallerIdName("outboundCallerIdName") .outboundCallerIdNumberArn("outboundCallerIdNumberArn") .outboundFlowArn("outboundFlowArn") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnQueue.OutboundCallerConfigProperty
static final class
An implementation forCfnQueue.OutboundCallerConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOutboundCallerIdName
The caller ID name.- See Also:
-
getOutboundCallerIdNumberArn
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 API.- See Also:
-
getOutboundFlowArn
The Amazon Resource Name (ARN) of the outbound flow.- See Also:
-
builder
-