interface UserQuickConnectConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnQuickConnectPropsMixin.UserQuickConnectConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnQuickConnectPropsMixin_UserQuickConnectConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnQuickConnectPropsMixin.UserQuickConnectConfigProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnQuickConnectPropsMixin.UserQuickConnectConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » 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 { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const userQuickConnectConfigProperty: connect_mixins.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