Class: Aws::Glue::Types::PropertyPredicate
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::PropertyPredicate
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Defines a property predicate.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #comparator  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The comparator used to compare this property to others. 
- 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The key of the property. 
- 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The value of the property. 
Instance Attribute Details
#comparator ⇒ String
The comparator used to compare this property to others.
| 20558 20559 20560 20561 20562 20563 20564 | # File 'lib/aws-sdk-glue/types.rb', line 20558 class PropertyPredicate < Struct.new( :key, :value, :comparator) SENSITIVE = [] include Aws::Structure end | 
#key ⇒ String
The key of the property.
| 20558 20559 20560 20561 20562 20563 20564 | # File 'lib/aws-sdk-glue/types.rb', line 20558 class PropertyPredicate < Struct.new( :key, :value, :comparator) SENSITIVE = [] include Aws::Structure end | 
#value ⇒ String
The value of the property.
| 20558 20559 20560 20561 20562 20563 20564 | # File 'lib/aws-sdk-glue/types.rb', line 20558 class PropertyPredicate < Struct.new( :key, :value, :comparator) SENSITIVE = [] include Aws::Structure end |