Interface CfnQuickConnectPropsMixin.QuickConnectConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnQuickConnectPropsMixin.QuickConnectConfigProperty.Jsii$Proxy
Enclosing class:
CfnQuickConnectPropsMixin

@Stability(Stable) public static interface CfnQuickConnectPropsMixin.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.cfnpropertymixins.services.connect.*;
 QuickConnectConfigProperty quickConnectConfigProperty = QuickConnectConfigProperty.builder()
         .phoneConfig(PhoneNumberQuickConnectConfigProperty.builder()
                 .phoneNumber("phoneNumber")
                 .build())
         .queueConfig(QueueQuickConnectConfigProperty.builder()
                 .contactFlowArn("contactFlowArn")
                 .queueArn("queueArn")
                 .build())
         .quickConnectType("quickConnectType")
         .userConfig(UserQuickConnectConfigProperty.builder()
                 .contactFlowArn("contactFlowArn")
                 .userArn("userArn")
                 .build())
         .build();
 

See Also: