Class: Aws::CustomerProfiles::Types::Task
- Inherits:
-
Struct
- Object
- Struct
- Aws::CustomerProfiles::Types::Task
- Defined in:
- gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb
Overview
When making an API call, you may pass Task data as a hash:
{
connector_operator: {
marketo: "PROJECTION", # accepts PROJECTION, LESS_THAN, GREATER_THAN, BETWEEN, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
s3: "PROJECTION", # accepts PROJECTION, LESS_THAN, GREATER_THAN, BETWEEN, LESS_THAN_OR_EQUAL_TO, GREATER_THAN_OR_EQUAL_TO, EQUAL_TO, NOT_EQUAL_TO, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
salesforce: "PROJECTION", # accepts PROJECTION, LESS_THAN, CONTAINS, GREATER_THAN, BETWEEN, LESS_THAN_OR_EQUAL_TO, GREATER_THAN_OR_EQUAL_TO, EQUAL_TO, NOT_EQUAL_TO, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
service_now: "PROJECTION", # accepts PROJECTION, CONTAINS, LESS_THAN, GREATER_THAN, BETWEEN, LESS_THAN_OR_EQUAL_TO, GREATER_THAN_OR_EQUAL_TO, EQUAL_TO, NOT_EQUAL_TO, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
zendesk: "PROJECTION", # accepts PROJECTION, GREATER_THAN, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
},
destination_field: "DestinationField",
source_fields: ["stringTo2048"], # required
task_properties: {
"VALUE" => "Property",
},
task_type: "Arithmetic", # required, accepts Arithmetic, Filter, Map, Mask, Merge, Truncate, Validate
}
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.
4677 4678 4679 4680 4681 4682 4683 4684 4685 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 4677 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.
4677 4678 4679 4680 4681 4682 4683 4684 4685 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 4677 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.
4677 4678 4679 4680 4681 4682 4683 4684 4685 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 4677 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.
4677 4678 4679 4680 4681 4682 4683 4684 4685 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 4677 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.
4677 4678 4679 4680 4681 4682 4683 4684 4685 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 4677 class Task < Struct.new( :connector_operator, :destination_field, :source_fields, :task_properties, :task_type) SENSITIVE = [] include Aws::Structure end |