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

Class: Aws::Glue::Types::PropertyPredicate

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

Overview

Note:

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

{
  key: "ValueString",
  value: "ValueString",
  comparator: "EQUALS", # accepts EQUALS, GREATER_THAN, LESS_THAN, GREATER_THAN_EQUALS, LESS_THAN_EQUALS
}

Defines a property predicate.

Instance Attribute Summary collapse

Instance Attribute Details

#comparatorString

The comparator used to compare this property to others.

Possible values:

  • EQUALS
  • GREATER_THAN
  • LESS_THAN
  • GREATER_THAN_EQUALS
  • LESS_THAN_EQUALS

Returns:

  • (String)

    The comparator used to compare this property to others.

#keyString

The key of the property.

Returns:

  • (String)

    The key of the property.

#valueString

The value of the property.

Returns:

  • (String)

    The value of the property.