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.
9832 9833 9834 9835 9836 9837 9838 9839 |
# File 'lib/aws-sdk-glue/types.rb', line 9832 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.
9832 9833 9834 9835 9836 9837 9838 9839 |
# File 'lib/aws-sdk-glue/types.rb', line 9832 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.
9832 9833 9834 9835 9836 9837 9838 9839 |
# File 'lib/aws-sdk-glue/types.rb', line 9832 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.
9832 9833 9834 9835 9836 9837 9838 9839 |
# File 'lib/aws-sdk-glue/types.rb', line 9832 class DirectSchemaChangePolicy < Struct.new( :enable_update_catalog, :update_behavior, :table, :database) SENSITIVE = [] include Aws::Structure end |