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

Class: Aws::DataPipeline::Types::Selector

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

Overview

Note:

When passing Selector as input to an Aws::Client method, you can use a vanilla Hash:

{
  field_name: "string",
  operator: {
    type: "EQ", # accepts EQ, REF_EQ, LE, GE, BETWEEN
    values: ["string"],
  },
}

A comparision that is used to determine whether a query should return this object.

Instance Attribute Summary collapse

Instance Attribute Details

#field_nameString

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.

Returns:

  • (String)

    The name of the field that the operator will be applied to.

#operatorTypes::Operator

Contains a logical operation for comparing the value of a field with a specified value.

Returns:

  • (Types::Operator)

    Contains a logical operation for comparing the value of a field with a specified value.

    .