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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnUser.UserProficiencyProperty
static final class
An implementation forCfnUser.UserProficiencyProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttributeName
The name of user’s proficiency.You must use a predefined attribute name that is present in the Amazon Connect instance.
- See Also:
-
getAttributeValue
The value of user’s proficiency.You must use a predefined attribute value that is present in the Amazon Connect instance.
- See Also:
-
getLevel
The level of the proficiency.The valid values are 1, 2, 3, 4 and 5.
- See Also:
-
builder
-