Class: Aws::Glue::Types::DirectSchemaChangePolicy
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::DirectSchemaChangePolicy
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
A policy that specifies update behavior for the crawler.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #database  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the database that the schema change policy applies to. 
- 
  
    
      #enable_update_catalog  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Whether to use the specified update behavior when the crawler finds a changed schema. 
- 
  
    
      #table  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the table in the database that the schema change policy applies to. 
- 
  
    
      #update_behavior  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The update behavior when the crawler finds a changed schema. 
Instance Attribute Details
#database ⇒ String
Specifies the database that the schema change policy applies to.
| 9866 9867 9868 9869 9870 9871 9872 9873 | # File 'lib/aws-sdk-glue/types.rb', line 9866 class DirectSchemaChangePolicy < Struct.new( :enable_update_catalog, :update_behavior, :table, :database) SENSITIVE = [] include Aws::Structure end | 
#enable_update_catalog ⇒ Boolean
Whether to use the specified update behavior when the crawler finds a changed schema.
| 9866 9867 9868 9869 9870 9871 9872 9873 | # File 'lib/aws-sdk-glue/types.rb', line 9866 class DirectSchemaChangePolicy < Struct.new( :enable_update_catalog, :update_behavior, :table, :database) SENSITIVE = [] include Aws::Structure end | 
#table ⇒ String
Specifies the table in the database that the schema change policy applies to.
| 9866 9867 9868 9869 9870 9871 9872 9873 | # File 'lib/aws-sdk-glue/types.rb', line 9866 class DirectSchemaChangePolicy < Struct.new( :enable_update_catalog, :update_behavior, :table, :database) SENSITIVE = [] include Aws::Structure end | 
#update_behavior ⇒ String
The update behavior when the crawler finds a changed schema.
| 9866 9867 9868 9869 9870 9871 9872 9873 | # File 'lib/aws-sdk-glue/types.rb', line 9866 class DirectSchemaChangePolicy < Struct.new( :enable_update_catalog, :update_behavior, :table, :database) SENSITIVE = [] include Aws::Structure end |