interface CfnInstanceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnInstanceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnInstanceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnInstanceMixinProps |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnInstanceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » 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 { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const cfnInstanceMixinProps: connect_mixins.CfnInstanceMixinProps = {
attributes: {
autoResolveBestVoices: false,
contactflowLogs: false,
contactLens: false,
earlyMedia: false,
enhancedChatMonitoring: false,
enhancedContactMonitoring: false,
highVolumeOutBound: false,
inboundCalls: 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