Interface CfnUser.UserProficiencyProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUser.UserProficiencyProperty.Jsii$Proxy
Enclosing class:
CfnUser

@Stability(Stable) public static interface CfnUser.UserProficiencyProperty extends software.amazon.jsii.JsiiSerializable

A predefined attribute must be created before using UserProficiencies in 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 software.amazon.awscdk.services.connect.*;
 UserProficiencyProperty userProficiencyProperty = UserProficiencyProperty.builder()
         .attributeName("attributeName")
         .attributeValue("attributeValue")
         .level(123)
         .build();
 

See Also: