interface CfnInstanceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnInstanceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnInstanceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnInstanceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnInstanceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnInstanceMixinProps |
Properties for CfnInstancePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-instance.html
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 cfnInstanceMixinProps: connect.CfnInstanceMixinProps = {
attributes: {
autoResolveBestVoices: false,
contactflowLogs: false,
contactLens: false,
earlyMedia: false,
enhancedChatMonitoring: false,
enhancedContactMonitoring: false,
highVolumeOutBound: false,
inboundCalls: false,
messageStreaming: false,
multiPartyChatConference: false,
multiPartyConference: false,
outboundCalls: false,
useCustomTtsVoices: false,
},
directoryId: 'directoryId',
identityManagementType: 'identityManagementType',
instanceAlias: 'instanceAlias',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| attributes? | IResolvable | Attributes | A toggle for an individual feature at the instance level. |
| directory | string | The identifier for the directory. |
| identity | string | The identity management type. |
| instance | string | The alias of instance. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
attributes?
Type:
IResolvable | Attributes
(optional)
A toggle for an individual feature at the instance level.
directoryId?
Type:
string
(optional)
The identifier for the directory.
identityManagementType?
Type:
string
(optional)
The identity management type.
instanceAlias?
Type:
string
(optional)
The alias of instance.
InstanceAlias is only required when IdentityManagementType is CONNECT_MANAGED or SAML . InstanceAlias is not required when IdentityManagementType is EXISTING_DIRECTORY .
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript