Class: Aws::Glue::Types::ConditionExpression
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::ConditionExpression
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Condition expression defined in the Glue Studio data preparation recipe node.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #condition  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The condition of the condition expression. 
- 
  
    
      #target_column  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The target column of the condition expressions. 
- 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The value of the condition expression. 
Instance Attribute Details
#condition ⇒ String
The condition of the condition expression.
| 3578 3579 3580 3581 3582 3583 3584 | # File 'lib/aws-sdk-glue/types.rb', line 3578 class ConditionExpression < Struct.new( :condition, :value, :target_column) SENSITIVE = [] include Aws::Structure end | 
#target_column ⇒ String
The target column of the condition expressions.
| 3578 3579 3580 3581 3582 3583 3584 | # File 'lib/aws-sdk-glue/types.rb', line 3578 class ConditionExpression < Struct.new( :condition, :value, :target_column) SENSITIVE = [] include Aws::Structure end | 
#value ⇒ String
The value of the condition expression.
| 3578 3579 3580 3581 3582 3583 3584 | # File 'lib/aws-sdk-glue/types.rb', line 3578 class ConditionExpression < Struct.new( :condition, :value, :target_column) SENSITIVE = [] include Aws::Structure end |