interface UserQuickConnectConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnQuickConnectPropsMixin.UserQuickConnectConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnQuickConnectPropsMixin_UserQuickConnectConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnQuickConnectPropsMixin.UserQuickConnectConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnQuickConnectPropsMixin.UserQuickConnectConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnQuickConnectPropsMixin » UserQuickConnectConfigProperty |
Contains information about the quick connect configuration settings for a user.
The contact flow must be of type Transfer to Agent.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from '@aws-cdk/cfn-property-mixins';
const userQuickConnectConfigProperty: connect.CfnQuickConnectPropsMixin.UserQuickConnectConfigProperty = {
contactFlowArn: 'contactFlowArn',
userArn: 'userArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| contact | string | The Amazon Resource Name (ARN) of the flow. |
| user | string | The Amazon Resource Name (ARN) of the user. |
contactFlowArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the flow.
userArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the user.

.NET
Go
Java
Python
TypeScript