Interface CfnUser.UserPhoneConfigProperty

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

@Stability(Stable) public static interface CfnUser.UserPhoneConfigProperty extends software.amazon.jsii.JsiiSerializable
Contains information about the phone configuration settings for 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.*;
 UserPhoneConfigProperty userPhoneConfigProperty = UserPhoneConfigProperty.builder()
         .phoneType("phoneType")
         // the properties below are optional
         .afterContactWorkTimeLimit(123)
         .autoAccept(false)
         .deskPhoneNumber("deskPhoneNumber")
         .build();
 

See Also: