Interface CfnQuickConnect.QuickConnectConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnQuickConnect.QuickConnectConfigProperty.Jsii$Proxy
- Enclosing class:
CfnQuickConnect
@Stability(Stable)
public static interface CfnQuickConnect.QuickConnectConfigProperty
extends software.amazon.jsii.JsiiSerializable
Contains configuration settings for a quick connect.
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.*;
QuickConnectConfigProperty quickConnectConfigProperty = QuickConnectConfigProperty.builder()
.quickConnectType("quickConnectType")
// the properties below are optional
.phoneConfig(PhoneNumberQuickConnectConfigProperty.builder()
.phoneNumber("phoneNumber")
.build())
.queueConfig(QueueQuickConnectConfigProperty.builder()
.contactFlowArn("contactFlowArn")
.queueArn("queueArn")
.build())
.userConfig(UserQuickConnectConfigProperty.builder()
.contactFlowArn("contactFlowArn")
.userArn("userArn")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnQuickConnect.QuickConnectConfigPropertystatic final classAn implementation forCfnQuickConnect.QuickConnectConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getQuickConnectType
The type of quick connect.In the Amazon Connect console, when you create a quick connect, you are prompted to assign one of the following types: Agent (USER), External (PHONE_NUMBER), or Queue (QUEUE).
- See Also:
-
getPhoneConfig
The phone configuration.This is required only if QuickConnectType is PHONE_NUMBER.
Returns union: either
IResolvableorCfnQuickConnect.PhoneNumberQuickConnectConfigProperty- See Also:
-
getQueueConfig
The queue configuration.This is required only if QuickConnectType is QUEUE.
Returns union: either
IResolvableorCfnQuickConnect.QueueQuickConnectConfigProperty- See Also:
-
getUserConfig
The user configuration.This is required only if QuickConnectType is USER.
Returns union: either
IResolvableorCfnQuickConnect.UserQuickConnectConfigProperty- See Also:
-
builder
-