Class: Aws::Transfer::Types::UserDetails
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Transfer::Types::UserDetails
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-transfer/types.rb
 
Overview
Specifies the user name, server ID, and session ID for a workflow.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #server_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The system-assigned unique identifier for a Transfer server instance.
 - 
  
    
      #session_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The system-assigned unique identifier for a session that corresponds to the workflow.
 - 
  
    
      #user_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A unique string that identifies a Transfer Family user associated with a server.
 
Instance Attribute Details
#server_id ⇒ String
The system-assigned unique identifier for a Transfer server instance.
      6444 6445 6446 6447 6448 6449 6450  | 
    
      # File 'lib/aws-sdk-transfer/types.rb', line 6444 class UserDetails < Struct.new( :user_name, :server_id, :session_id) SENSITIVE = [] include Aws::Structure end  | 
  
#session_id ⇒ String
The system-assigned unique identifier for a session that corresponds to the workflow.
      6444 6445 6446 6447 6448 6449 6450  | 
    
      # File 'lib/aws-sdk-transfer/types.rb', line 6444 class UserDetails < Struct.new( :user_name, :server_id, :session_id) SENSITIVE = [] include Aws::Structure end  | 
  
#user_name ⇒ String
A unique string that identifies a Transfer Family user associated with a server.
      6444 6445 6446 6447 6448 6449 6450  | 
    
      # File 'lib/aws-sdk-transfer/types.rb', line 6444 class UserDetails < Struct.new( :user_name, :server_id, :session_id) SENSITIVE = [] include Aws::Structure end  |