interface CfnUserMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnUserMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnUserMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnUserMixinProps |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnUserMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnUserMixinProps |
Properties for CfnUserPropsMixin.
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 { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const cfnUserMixinProps: connect_mixins.CfnUserMixinProps = {
directoryUserId: 'directoryUserId',
hierarchyGroupArn: 'hierarchyGroupArn',
identityInfo: {
email: 'email',
firstName: 'firstName',
lastName: 'lastName',
mobile: 'mobile',
secondaryEmail: 'secondaryEmail',
},
instanceArn: 'instanceArn',
password: 'password',
phoneConfig: {
afterContactWorkTimeLimit: 123,
autoAccept: false,
deskPhoneNumber: 'deskPhoneNumber',
persistentConnection: false,
phoneType: 'phoneType',
},
routingProfileArn: 'routingProfileArn',
securityProfileArns: ['securityProfileArns'],
tags: [{
key: 'key',
value: 'value',
}],
username: 'username',
userProficiencies: [{
attributeName: 'attributeName',
attributeValue: 'attributeValue',
level: 123,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| instance | string | The Amazon Resource Name (ARN) of the instance. |
| password? | string | The user's password. |
| phone | IResolvable | User | Information about the phone configuration for the user. |
| 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. |
| 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. |
| username? | string | The user name assigned to the user account. |
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.
instanceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the instance.
password?
Type:
string
(optional)
The user's password.
phoneConfig?
Type:
IResolvable | User
(optional)
Information about the phone configuration for the user.
routingProfileArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the user's routing profile.
securityProfileArns?
Type:
string[]
(optional)
The Amazon Resource Name (ARN) of the user's security profile.
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.
username?
Type:
string
(optional)
The user name assigned to the user account.

.NET
Go
Java
Python
TypeScript