Class: Aws::CustomerProfiles::Types::IdentityResolutionJob
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CustomerProfiles::Types::IdentityResolutionJob
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-customerprofiles/types.rb
 
Overview
Information about the Identity Resolution Job.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #domain_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique name of the domain.
 - 
  
    
      #exporting_location  ⇒ Types::ExportingLocation 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The S3 location where the Identity Resolution Job writes result files.
 - 
  
    
      #job_end_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The timestamp of when the job was completed.
 - 
  
    
      #job_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier of the Identity Resolution Job.
 - 
  
    
      #job_start_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The timestamp of when the job was started or will be started.
 - 
  
    
      #job_stats  ⇒ Types::JobStats 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Statistics about an Identity Resolution Job.
 - 
  
    
      #message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The error messages that are generated when the Identity Resolution Job runs.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status of the Identity Resolution Job.
 
Instance Attribute Details
#domain_name ⇒ String
The unique name of the domain.
      2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781  | 
    
      # File 'lib/aws-sdk-customerprofiles/types.rb', line 2770 class IdentityResolutionJob < Struct.new( :domain_name, :job_id, :status, :job_start_time, :job_end_time, :job_stats, :exporting_location, :message) SENSITIVE = [] include Aws::Structure end  | 
  
#exporting_location ⇒ Types::ExportingLocation
The S3 location where the Identity Resolution Job writes result files.
      2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781  | 
    
      # File 'lib/aws-sdk-customerprofiles/types.rb', line 2770 class IdentityResolutionJob < Struct.new( :domain_name, :job_id, :status, :job_start_time, :job_end_time, :job_stats, :exporting_location, :message) SENSITIVE = [] include Aws::Structure end  | 
  
#job_end_time ⇒ Time
The timestamp of when the job was completed.
      2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781  | 
    
      # File 'lib/aws-sdk-customerprofiles/types.rb', line 2770 class IdentityResolutionJob < Struct.new( :domain_name, :job_id, :status, :job_start_time, :job_end_time, :job_stats, :exporting_location, :message) SENSITIVE = [] include Aws::Structure end  | 
  
#job_id ⇒ String
The unique identifier of the Identity Resolution Job.
      2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781  | 
    
      # File 'lib/aws-sdk-customerprofiles/types.rb', line 2770 class IdentityResolutionJob < Struct.new( :domain_name, :job_id, :status, :job_start_time, :job_end_time, :job_stats, :exporting_location, :message) SENSITIVE = [] include Aws::Structure end  | 
  
#job_start_time ⇒ Time
The timestamp of when the job was started or will be started.
      2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781  | 
    
      # File 'lib/aws-sdk-customerprofiles/types.rb', line 2770 class IdentityResolutionJob < Struct.new( :domain_name, :job_id, :status, :job_start_time, :job_end_time, :job_stats, :exporting_location, :message) SENSITIVE = [] include Aws::Structure end  | 
  
#job_stats ⇒ Types::JobStats
Statistics about an Identity Resolution Job.
      2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781  | 
    
      # File 'lib/aws-sdk-customerprofiles/types.rb', line 2770 class IdentityResolutionJob < Struct.new( :domain_name, :job_id, :status, :job_start_time, :job_end_time, :job_stats, :exporting_location, :message) SENSITIVE = [] include Aws::Structure end  | 
  
#message ⇒ String
The error messages that are generated when the Identity Resolution Job runs.
      2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781  | 
    
      # File 'lib/aws-sdk-customerprofiles/types.rb', line 2770 class IdentityResolutionJob < Struct.new( :domain_name, :job_id, :status, :job_start_time, :job_end_time, :job_stats, :exporting_location, :message) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
The status of the Identity Resolution Job.
- 
‘PENDING`: The Identity Resolution Job is scheduled but has not started yet. If you turn off the Identity Resolution feature in your domain, jobs in the `PENDING` state are deleted.
 - 
‘PREPROCESSING`: The Identity Resolution Job is loading your data.
 - 
‘FIND_MATCHING`: The Identity Resolution Job is using the machine learning model to identify profiles that belong to the same matching group.
 - 
‘MERGING`: The Identity Resolution Job is merging duplicate profiles.
 - 
‘COMPLETED`: The Identity Resolution Job completed successfully.
 - 
‘PARTIAL_SUCCESS`: There’s a system error and not all of the data is merged. The Identity Resolution Job writes a message indicating the source of the problem.
 - 
‘FAILED`: The Identity Resolution Job did not merge any data. It writes a message indicating the source of the problem.
 
      2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781  | 
    
      # File 'lib/aws-sdk-customerprofiles/types.rb', line 2770 class IdentityResolutionJob < Struct.new( :domain_name, :job_id, :status, :job_start_time, :job_end_time, :job_stats, :exporting_location, :message) SENSITIVE = [] include Aws::Structure end  |