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: