Class: Aws::Glue::Types::CodeGenNodeArg
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::CodeGenNodeArg
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
An argument or property of a node.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the argument or property. 
- 
  
    
      #param  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    True if the value is used as a parameter. 
- 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The value of the argument or property. 
Instance Attribute Details
#name ⇒ String
The name of the argument or property.
| 2984 2985 2986 2987 2988 2989 2990 | # File 'lib/aws-sdk-glue/types.rb', line 2984 class CodeGenNodeArg < Struct.new( :name, :value, :param) SENSITIVE = [] include Aws::Structure end | 
#param ⇒ Boolean
True if the value is used as a parameter.
| 2984 2985 2986 2987 2988 2989 2990 | # File 'lib/aws-sdk-glue/types.rb', line 2984 class CodeGenNodeArg < Struct.new( :name, :value, :param) SENSITIVE = [] include Aws::Structure end | 
#value ⇒ String
The value of the argument or property.
| 2984 2985 2986 2987 2988 2989 2990 | # File 'lib/aws-sdk-glue/types.rb', line 2984 class CodeGenNodeArg < Struct.new( :name, :value, :param) SENSITIVE = [] include Aws::Structure end |