interface PersistentConnectionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnUserPropsMixin.PersistentConnectionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnUserPropsMixin_PersistentConnectionConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnUserPropsMixin.PersistentConnectionConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnUserPropsMixin.PersistentConnectionConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnUserPropsMixin » 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/cfn-property-mixins';
const persistentConnectionConfigProperty: connect.CfnUserPropsMixin.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
(optional)
The channels that agents can handle in the Contact Control Panel (CCP).
persistentConnection?
Type:
boolean | IResolvable
(optional)
The Persistent Connection setting.

.NET
Go
Java
Python
TypeScript