Class: Aws::Glue::Types::AllowedValue
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::AllowedValue
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
An object representing a value allowed for a property.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A description of the allowed value. 
- 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The value allowed for the property. 
Instance Attribute Details
#description ⇒ String
A description of the allowed value.
| 170 171 172 173 174 175 | # File 'lib/aws-sdk-glue/types.rb', line 170 class AllowedValue < Struct.new( :description, :value) SENSITIVE = [] include Aws::Structure end | 
#value ⇒ String
The value allowed for the property.
| 170 171 172 173 174 175 | # File 'lib/aws-sdk-glue/types.rb', line 170 class AllowedValue < Struct.new( :description, :value) SENSITIVE = [] include Aws::Structure end |