Class: Aws::AppStream::Types::DeleteUserRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::AppStream::Types::DeleteUserRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-appstream/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 [:user_name]
Instance Attribute Summary collapse
- 
  
    
      #authentication_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The authentication type for the user.
 - 
  
    
      #user_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The email address of the user.
 
Instance Attribute Details
#authentication_type ⇒ String
The authentication type for the user. You must specify USERPOOL.
      2296 2297 2298 2299 2300 2301  | 
    
      # File 'lib/aws-sdk-appstream/types.rb', line 2296 class DeleteUserRequest < Struct.new( :user_name, :authentication_type) SENSITIVE = [:user_name] include Aws::Structure end  | 
  
#user_name ⇒ String
The email address of the user.
<note markdown=“1”> Users’ email addresses are case-sensitive.
</note>
  
      2296 2297 2298 2299 2300 2301  | 
    
      # File 'lib/aws-sdk-appstream/types.rb', line 2296 class DeleteUserRequest < Struct.new( :user_name, :authentication_type) SENSITIVE = [:user_name] include Aws::Structure end  |