interface CfnInstanceProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnInstanceProps |
Java | software.amazon.awscdk.services.connect.CfnInstanceProps |
Python | aws_cdk.aws_connect.CfnInstanceProps |
TypeScript | @aws-cdk/aws-connect » CfnInstanceProps |
Properties for defining a CfnInstance.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as connect from '@aws-cdk/aws-connect';
const cfnInstanceProps: connect.CfnInstanceProps = {
attributes: {
inboundCalls: false,
outboundCalls: false,
// the properties below are optional
autoResolveBestVoices: false,
contactflowLogs: false,
contactLens: false,
earlyMedia: false,
useCustomTtsVoices: false,
},
identityManagementType: 'identityManagementType',
// the properties below are optional
directoryId: 'directoryId',
instanceAlias: 'instanceAlias',
};
Properties
| Name | Type | Description |
|---|---|---|
| attributes | IResolvable | Attributes | A toggle for an individual feature at the instance level. |
| identity | string | The identity management type. |
| directory | string | The identifier for the directory. |
| instance | string | The alias of instance. |
attributes
Type:
IResolvable | Attributes
A toggle for an individual feature at the instance level.
identityManagementType
Type:
string
The identity management type.
directoryId?
Type:
string
(optional)
The identifier for the directory.
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 .

.NET
Java
Python
TypeScript