interface AttributesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnInstancePropsMixin.AttributesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnInstancePropsMixin_AttributesProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnInstancePropsMixin.AttributesProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnInstancePropsMixin.AttributesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnInstancePropsMixin » AttributesProperty |
*This is a preview release for Amazon Connect .
It is subject to change.*
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 attributesProperty: connect_mixins.CfnInstancePropsMixin.AttributesProperty = {
autoResolveBestVoices: false,
contactflowLogs: false,
contactLens: false,
earlyMedia: false,
enhancedChatMonitoring: false,
enhancedContactMonitoring: false,
highVolumeOutBound: false,
inboundCalls: false,
multiPartyChatConference: false,
multiPartyConference: false,
outboundCalls: false,
useCustomTtsVoices: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| auto | boolean | IResolvable | Boolean flag which enables AUTO_RESOLVE_BEST_VOICES on an instance. |
| contact | boolean | IResolvable | Boolean flag which enables CONTACT_LENS on an instance. |
| contactflow | boolean | IResolvable | Boolean flag which enables CONTACTFLOW_LOGS on an instance. |
| early | boolean | IResolvable | Boolean flag which enables EARLY_MEDIA on an instance. |
| enhanced | boolean | IResolvable | Boolean flag which enables ENHANCED_CHAT_MONITORING on an instance. |
| enhanced | boolean | IResolvable | Boolean flag which enables ENHANCED_CONTACT_MONITORING on an instance. |
| high | boolean | IResolvable | Boolean flag which enables HIGH_VOLUME_OUTBOUND on an instance. |
| inbound | boolean | IResolvable | Mandatory element which enables inbound calls on new instance. |
| multi | boolean | IResolvable | Boolean flag which enables MULTI_PARTY_CHAT_CONFERENCE on an instance. |
| multi | boolean | IResolvable | Boolean flag which enables MULTI_PARTY_CONFERENCE on an instance. |
| outbound | boolean | IResolvable | Mandatory element which enables outbound calls on new instance. |
| use | boolean | IResolvable | Boolean flag which enables USE_CUSTOM_TTS_VOICES on an instance. |
autoResolveBestVoices?
Type:
boolean | IResolvable
(optional)
Boolean flag which enables AUTO_RESOLVE_BEST_VOICES on an instance.
contactLens?
Type:
boolean | IResolvable
(optional)
Boolean flag which enables CONTACT_LENS on an instance.
contactflowLogs?
Type:
boolean | IResolvable
(optional)
Boolean flag which enables CONTACTFLOW_LOGS on an instance.
earlyMedia?
Type:
boolean | IResolvable
(optional)
Boolean flag which enables EARLY_MEDIA on an instance.
enhancedChatMonitoring?
Type:
boolean | IResolvable
(optional)
Boolean flag which enables ENHANCED_CHAT_MONITORING on an instance.
enhancedContactMonitoring?
Type:
boolean | IResolvable
(optional)
Boolean flag which enables ENHANCED_CONTACT_MONITORING on an instance.
highVolumeOutBound?
Type:
boolean | IResolvable
(optional)
Boolean flag which enables HIGH_VOLUME_OUTBOUND on an instance.
inboundCalls?
Type:
boolean | IResolvable
(optional)
Mandatory element which enables inbound calls on new instance.
multiPartyChatConference?
Type:
boolean | IResolvable
(optional)
Boolean flag which enables MULTI_PARTY_CHAT_CONFERENCE on an instance.
multiPartyConference?
Type:
boolean | IResolvable
(optional)
Boolean flag which enables MULTI_PARTY_CONFERENCE on an instance.
outboundCalls?
Type:
boolean | IResolvable
(optional)
Mandatory element which enables outbound calls on new instance.
useCustomTtsVoices?
Type:
boolean | IResolvable
(optional)
Boolean flag which enables USE_CUSTOM_TTS_VOICES on an instance.

.NET
Go
Java
Python
TypeScript