Class: Aws::Connect::Types::UpdateUserProficienciesRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::UpdateUserProficienciesRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #instance_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of the Amazon Connect instance.
 - 
  
    
      #user_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of the user account.
 - 
  
    
      #user_proficiencies  ⇒ Array<Types::UserProficiency> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The proficiencies to be updated for the user.
 
Instance Attribute Details
#instance_id ⇒ String
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
      26078 26079 26080 26081 26082 26083 26084  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 26078 class UpdateUserProficienciesRequest < Struct.new( :instance_id, :user_id, :user_proficiencies) SENSITIVE = [] include Aws::Structure end  | 
  
#user_id ⇒ String
The identifier of the user account.
      26078 26079 26080 26081 26082 26083 26084  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 26078 class UpdateUserProficienciesRequest < Struct.new( :instance_id, :user_id, :user_proficiencies) SENSITIVE = [] include Aws::Structure end  | 
  
#user_proficiencies ⇒ Array<Types::UserProficiency>
The proficiencies to be updated for the user. Proficiencies must first be associated to the user. You can do this using AssociateUserProficiencies API.
      26078 26079 26080 26081 26082 26083 26084  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 26078 class UpdateUserProficienciesRequest < Struct.new( :instance_id, :user_id, :user_proficiencies) SENSITIVE = [] include Aws::Structure end  |