Class: Aws::DataPipeline::Types::Selector
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataPipeline::Types::Selector
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-datapipeline/types.rb
Overview
A comparision that is used to determine whether a query should return this object.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#field_name ⇒ String
The name of the field that the operator will be applied to.
-
#operator ⇒ Types::Operator
Contains a logical operation for comparing the value of a field with a specified value.
Instance Attribute Details
#field_name ⇒ String
The name of the field that the operator will be applied to. The field name is the “key” portion of the field definition in the pipeline definition syntax that is used by the AWS Data Pipeline API. If the field is not set on the object, the condition fails.
1039 1040 1041 1042 1043 1044 |
# File 'lib/aws-sdk-datapipeline/types.rb', line 1039 class Selector < Struct.new( :field_name, :operator) SENSITIVE = [] include Aws::Structure end |
#operator ⇒ Types::Operator
Contains a logical operation for comparing the value of a field with a specified value.
1039 1040 1041 1042 1043 1044 |
# File 'lib/aws-sdk-datapipeline/types.rb', line 1039 class Selector < Struct.new( :field_name, :operator) SENSITIVE = [] include Aws::Structure end |