You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::DataPipeline::Types::Query

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing Query as input to an Aws::Client method, you can use a vanilla 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.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#selectorsArray<Types::Selector>

List of selectors that define the query. An object must satisfy all of the selectors to match the query.

Returns: