Class: Aws::CustomerProfiles::Types::Task
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CustomerProfiles::Types::Task
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-customerprofiles/types.rb
 
Overview
A class for modeling different type of tasks. Task implementation varies based on the TaskType.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #connector_operator  ⇒ Types::ConnectorOperator 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The operation to be performed on the provided source fields.
 - 
  
    
      #destination_field  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A field in a destination connector, or a field value against which Amazon AppFlow validates a source field.
 - 
  
    
      #source_fields  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The source fields to which a particular task is applied.
 - 
  
    
      #task_properties  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A map used to store task-related information.
 - 
  
    
      #task_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the particular task implementation that Amazon AppFlow performs.
 
Instance Attribute Details
#connector_operator ⇒ Types::ConnectorOperator
The operation to be performed on the provided source fields.
      5040 5041 5042 5043 5044 5045 5046 5047 5048  | 
    
      # File 'lib/aws-sdk-customerprofiles/types.rb', line 5040 class Task < Struct.new( :connector_operator, :destination_field, :source_fields, :task_properties, :task_type) SENSITIVE = [] include Aws::Structure end  | 
  
#destination_field ⇒ String
A field in a destination connector, or a field value against which Amazon AppFlow validates a source field.
      5040 5041 5042 5043 5044 5045 5046 5047 5048  | 
    
      # File 'lib/aws-sdk-customerprofiles/types.rb', line 5040 class Task < Struct.new( :connector_operator, :destination_field, :source_fields, :task_properties, :task_type) SENSITIVE = [] include Aws::Structure end  | 
  
#source_fields ⇒ Array<String>
The source fields to which a particular task is applied.
      5040 5041 5042 5043 5044 5045 5046 5047 5048  | 
    
      # File 'lib/aws-sdk-customerprofiles/types.rb', line 5040 class Task < Struct.new( :connector_operator, :destination_field, :source_fields, :task_properties, :task_type) SENSITIVE = [] include Aws::Structure end  | 
  
#task_properties ⇒ Hash<String,String>
A map used to store task-related information. The service looks for particular information based on the TaskType.
      5040 5041 5042 5043 5044 5045 5046 5047 5048  | 
    
      # File 'lib/aws-sdk-customerprofiles/types.rb', line 5040 class Task < Struct.new( :connector_operator, :destination_field, :source_fields, :task_properties, :task_type) SENSITIVE = [] include Aws::Structure end  | 
  
#task_type ⇒ String
Specifies the particular task implementation that Amazon AppFlow performs.
      5040 5041 5042 5043 5044 5045 5046 5047 5048  | 
    
      # File 'lib/aws-sdk-customerprofiles/types.rb', line 5040 class Task < Struct.new( :connector_operator, :destination_field, :source_fields, :task_properties, :task_type) SENSITIVE = [] include Aws::Structure end  |