Class: Aws::VoiceID::Types::Speaker
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::VoiceID::Types::Speaker
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-voiceid/types.rb
 
Overview
Contains all the information about a speaker.
Constant Summary collapse
- SENSITIVE =
 [:customer_speaker_id]
Instance Attribute Summary collapse
- 
  
    
      #created_at  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A timestamp of when the speaker was created.
 - 
  
    
      #customer_speaker_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The client-provided identifier for the speaker.
 - 
  
    
      #domain_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of the domain that contains the speaker.
 - 
  
    
      #generated_speaker_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The service-generated identifier for the speaker.
 - 
  
    
      #last_accessed_at  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The timestamp of when the speaker was last accessed for enrollment, re-enrollment or a successful authentication.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The current status of the speaker.
 - 
  
    
      #updated_at  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A timestamp of the speaker’s last update.
 
Instance Attribute Details
#created_at ⇒ Time
A timestamp of when the speaker was created.
      1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755  | 
    
      # File 'lib/aws-sdk-voiceid/types.rb', line 1745 class Speaker < Struct.new( :created_at, :customer_speaker_id, :domain_id, :generated_speaker_id, :last_accessed_at, :status, :updated_at) SENSITIVE = [:customer_speaker_id] include Aws::Structure end  | 
  
#customer_speaker_id ⇒ String
The client-provided identifier for the speaker.
      1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755  | 
    
      # File 'lib/aws-sdk-voiceid/types.rb', line 1745 class Speaker < Struct.new( :created_at, :customer_speaker_id, :domain_id, :generated_speaker_id, :last_accessed_at, :status, :updated_at) SENSITIVE = [:customer_speaker_id] include Aws::Structure end  | 
  
#domain_id ⇒ String
The identifier of the domain that contains the speaker.
      1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755  | 
    
      # File 'lib/aws-sdk-voiceid/types.rb', line 1745 class Speaker < Struct.new( :created_at, :customer_speaker_id, :domain_id, :generated_speaker_id, :last_accessed_at, :status, :updated_at) SENSITIVE = [:customer_speaker_id] include Aws::Structure end  | 
  
#generated_speaker_id ⇒ String
The service-generated identifier for the speaker.
      1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755  | 
    
      # File 'lib/aws-sdk-voiceid/types.rb', line 1745 class Speaker < Struct.new( :created_at, :customer_speaker_id, :domain_id, :generated_speaker_id, :last_accessed_at, :status, :updated_at) SENSITIVE = [:customer_speaker_id] include Aws::Structure end  | 
  
#last_accessed_at ⇒ Time
The timestamp of when the speaker was last accessed for enrollment, re-enrollment or a successful authentication. This timestamp is accurate to one hour.
      1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755  | 
    
      # File 'lib/aws-sdk-voiceid/types.rb', line 1745 class Speaker < Struct.new( :created_at, :customer_speaker_id, :domain_id, :generated_speaker_id, :last_accessed_at, :status, :updated_at) SENSITIVE = [:customer_speaker_id] include Aws::Structure end  | 
  
#status ⇒ String
The current status of the speaker.
      1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755  | 
    
      # File 'lib/aws-sdk-voiceid/types.rb', line 1745 class Speaker < Struct.new( :created_at, :customer_speaker_id, :domain_id, :generated_speaker_id, :last_accessed_at, :status, :updated_at) SENSITIVE = [:customer_speaker_id] include Aws::Structure end  | 
  
#updated_at ⇒ Time
A timestamp of the speaker’s last update.
      1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755  | 
    
      # File 'lib/aws-sdk-voiceid/types.rb', line 1745 class Speaker < Struct.new( :created_at, :customer_speaker_id, :domain_id, :generated_speaker_id, :last_accessed_at, :status, :updated_at) SENSITIVE = [:customer_speaker_id] include Aws::Structure end  |