Class: Aws::Glue::Types::Option
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::Option
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Specifies an option value.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the description of the option. 
- 
  
    
      #label  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the label of the option. 
- 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the value of the option. 
Instance Attribute Details
#description ⇒ String
Specifies the description of the option.
| 19943 19944 19945 19946 19947 19948 19949 | # File 'lib/aws-sdk-glue/types.rb', line 19943 class Option < Struct.new( :value, :label, :description) SENSITIVE = [] include Aws::Structure end |