interface UserProficiencyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnUserPropsMixin.UserProficiencyProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnUserPropsMixin_UserProficiencyProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnUserPropsMixin.UserProficiencyProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnUserPropsMixin.UserProficiencyProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnUserPropsMixin » UserProficiencyProperty |
A predefined attribute must be created before using
UserProficienciesin the Cloudformation User template.
For more information, see Predefined attributes .
Proficiency of a user.
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 userProficiencyProperty: connect_mixins.CfnUserPropsMixin.UserProficiencyProperty = {
attributeName: 'attributeName',
attributeValue: 'attributeValue',
level: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| attribute | string | The name of user’s proficiency. |
| attribute | string | The value of user’s proficiency. |
| level? | number | The level of the proficiency. |
attributeName?
Type:
string
(optional)
The name of user’s proficiency.
You must use a predefined attribute name that is present in the Amazon Connect instance.
attributeValue?
Type:
string
(optional)
The value of user’s proficiency.
You must use a predefined attribute value that is present in the Amazon Connect instance.
level?
Type:
number
(optional)
The level of the proficiency.
The valid values are 1, 2, 3, 4 and 5.

.NET
Go
Java
Python
TypeScript