Class: Aws::DataPipeline::Types::Query
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataPipeline::Types::Query
- Defined in:
- gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb
Overview
Note:
When making an API call, you may pass Query data as a hash:
{
selectors: [
{
field_name: "string",
operator: {
type: "EQ", # accepts EQ, REF_EQ, LE, GE, BETWEEN
values: ["string"],
},
},
],
}
Defines the query to run against an object.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#selectors ⇒ Array<Types::Selector>
List of selectors that define the query.
Instance Attribute Details
#selectors ⇒ Array<Types::Selector>
List of selectors that define the query. An object must satisfy all of the selectors to match the query.
1069 1070 1071 1072 1073 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 1069 class Query < Struct.new( :selectors) SENSITIVE = [] include Aws::Structure end |