Class: Aws::DataExchange::Types::SchemaChangeDetails
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::DataExchange::Types::SchemaChangeDetails
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-dataexchange/types.rb
 
Overview
Object encompassing information about a schema change to a single, particular field, a notification can have up to 100 of these.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Description of what’s changing about this field.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Name of the changing field.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Is the field being added, removed, or modified?.
 
Instance Attribute Details
#description ⇒ String
Description of what’s changing about this field. This value can be up to 512 characters long.
      3675 3676 3677 3678 3679 3680 3681  | 
    
      # File 'lib/aws-sdk-dataexchange/types.rb', line 3675 class SchemaChangeDetails < Struct.new( :name, :type, :description) SENSITIVE = [] include Aws::Structure end  | 
  
#name ⇒ String
Name of the changing field. This value can be up to 255 characters long.
      3675 3676 3677 3678 3679 3680 3681  | 
    
      # File 'lib/aws-sdk-dataexchange/types.rb', line 3675 class SchemaChangeDetails < Struct.new( :name, :type, :description) SENSITIVE = [] include Aws::Structure end  | 
  
#type ⇒ String
Is the field being added, removed, or modified?
      3675 3676 3677 3678 3679 3680 3681  | 
    
      # File 'lib/aws-sdk-dataexchange/types.rb', line 3675 class SchemaChangeDetails < Struct.new( :name, :type, :description) SENSITIVE = [] include Aws::Structure end  |