Class: Aws::Glue::Types::MetadataKeyValuePair
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::MetadataKeyValuePair
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
A structure containing a key value pair for metadata.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #metadata_key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A metadata key. 
- 
  
    
      #metadata_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A metadata key’s corresponding value. 
Instance Attribute Details
#metadata_key ⇒ String
A metadata key.
| 19346 19347 19348 19349 19350 19351 | # File 'lib/aws-sdk-glue/types.rb', line 19346 class MetadataKeyValuePair < Struct.new( :metadata_key, :metadata_value) SENSITIVE = [] include Aws::Structure end | 
#metadata_value ⇒ String
A metadata key’s corresponding value.
| 19346 19347 19348 19349 19350 19351 | # File 'lib/aws-sdk-glue/types.rb', line 19346 class MetadataKeyValuePair < Struct.new( :metadata_key, :metadata_value) SENSITIVE = [] include Aws::Structure end |