interface PersistentConnectionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnUser.PersistentConnectionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnUser_PersistentConnectionConfigProperty |
Java | software.amazon.awscdk.services.connect.CfnUser.PersistentConnectionConfigProperty |
Python | aws_cdk.aws_connect.CfnUser.PersistentConnectionConfigProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnUser » PersistentConnectionConfigProperty |
Persistent Connection configuration per channel.
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-lib';
const persistentConnectionConfigProperty: connect.CfnUser.PersistentConnectionConfigProperty = {
channel: 'channel',
persistentConnection: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | The channels that agents can handle in the Contact Control Panel (CCP). |
| persistent | boolean | IResolvable | The Persistent Connection setting. |
channel
Type:
string
The channels that agents can handle in the Contact Control Panel (CCP).
persistentConnection
Type:
boolean | IResolvable
The Persistent Connection setting.

.NET
Go
Java
Python
TypeScript