interface CfnUserProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnUserProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnUserProps |
Java | software.amazon.awscdk.services.connect.CfnUserProps |
Python | aws_cdk.aws_connect.CfnUserProps |
TypeScript | aws-cdk-lib » aws_connect » CfnUserProps |
Properties for defining a CfnUser.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-user.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-lib';
const cfnUserProps: connect.CfnUserProps = {
instanceArn: 'instanceArn',
routingProfileArn: 'routingProfileArn',
securityProfileArns: ['securityProfileArns'],
username: 'username',
// the properties below are optional
afterContactWorkConfigs: [{
afterContactWorkConfig: {
afterContactWorkTimeLimit: 123,
},
channel: 'channel',
// the properties below are optional
agentFirstCallbackAfterContactWorkConfig: {
afterContactWorkTimeLimit: 123,
},
}],
autoAcceptConfigs: [{
autoAccept: false,
channel: 'channel',
// the properties below are optional
agentFirstCallbackAutoAccept: false,
}],
directoryUserId: 'directoryUserId',
hierarchyGroupArn: 'hierarchyGroupArn',
identityInfo: {
email: 'email',
firstName: 'firstName',
lastName: 'lastName',
mobile: 'mobile',
secondaryEmail: 'secondaryEmail',
},
password: 'password',
persistentConnectionConfigs: [{
channel: 'channel',
persistentConnection: false,
}],
phoneConfig: {
afterContactWorkTimeLimit: 123,
autoAccept: false,
deskPhoneNumber: 'deskPhoneNumber',
persistentConnection: false,
phoneType: 'phoneType',
},
phoneNumberConfigs: [{
channel: 'channel',
phoneType: 'phoneType',
// the properties below are optional
phoneNumber: 'phoneNumber',
}],
tags: [{
key: 'key',
value: 'value',
}],
userProficiencies: [{
attributeName: 'attributeName',
attributeValue: 'attributeValue',
level: 123,
}],
voiceEnhancementConfigs: [{
channel: 'channel',
voiceEnhancementMode: 'voiceEnhancementMode',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | The Amazon Resource Name (ARN) of the instance. |
| routing | string | The Amazon Resource Name (ARN) of the user's routing profile. |
| security | string[] | The Amazon Resource Name (ARN) of the user's security profile. |
| username | string | The user name assigned to the user account. |
| after | IResolvable | (IResolvable | After)[] | After Contact Work configurations of a user. |
| auto | IResolvable | (IResolvable | Auto)[] | Auto-accept configurations of a user. |
| directory | string | The identifier of the user account in the directory used for identity management. |
| hierarchy | string | The Amazon Resource Name (ARN) of the user's hierarchy group. |
| identity | IResolvable | User | Information about the user identity. |
| password? | string | The user's password. |
| persistent | IResolvable | (IResolvable | Persistent)[] | Persistent Connection configurations of a user. |
| phone | IResolvable | User | Information about the phone configuration for the user. |
| phone | IResolvable | (IResolvable | Phone)[] | Phone Number configurations of a user. |
| tags? | Cfn[] | The tags. |
| user | IResolvable | (IResolvable | User)[] | One or more predefined attributes assigned to a user, with a numeric value that indicates how their level of skill in a specified area. |
| voice | IResolvable | (IResolvable | Voice)[] | Voice Enhancement configurations of a user. |
instanceArn
Type:
string
The Amazon Resource Name (ARN) of the instance.
routingProfileArn
Type:
string
The Amazon Resource Name (ARN) of the user's routing profile.
securityProfileArns
Type:
string[]
The Amazon Resource Name (ARN) of the user's security profile.
username
Type:
string
The user name assigned to the user account.
afterContactWorkConfigs?
Type:
IResolvable | (IResolvable | After)[]
(optional)
After Contact Work configurations of a user.
autoAcceptConfigs?
Type:
IResolvable | (IResolvable | Auto)[]
(optional)
Auto-accept configurations of a user.
directoryUserId?
Type:
string
(optional)
The identifier of the user account in the directory used for identity management.
hierarchyGroupArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the user's hierarchy group.
identityInfo?
Type:
IResolvable | User
(optional)
Information about the user identity.
password?
Type:
string
(optional)
The user's password.
persistentConnectionConfigs?
Type:
IResolvable | (IResolvable | Persistent)[]
(optional)
Persistent Connection configurations of a user.
phoneConfig?
Type:
IResolvable | User
(optional)
Information about the phone configuration for the user.
phoneNumberConfigs?
Type:
IResolvable | (IResolvable | Phone)[]
(optional)
Phone Number configurations of a user.
tags?
Type:
Cfn[]
(optional)
The tags.
userProficiencies?
Type:
IResolvable | (IResolvable | User)[]
(optional)
One or more predefined attributes assigned to a user, with a numeric value that indicates how their level of skill in a specified area.
voiceEnhancementConfigs?
Type:
IResolvable | (IResolvable | Voice)[]
(optional)
Voice Enhancement configurations of a user.

.NET
Go
Java
Python
TypeScript