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.
8621 8622 8623 8624 8625 8626 8627 8628 |
# File 'lib/aws-sdk-glue/types.rb', line 8621 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.
8621 8622 8623 8624 8625 8626 8627 8628 |
# File 'lib/aws-sdk-glue/types.rb', line 8621 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.
8621 8622 8623 8624 8625 8626 8627 8628 |
# File 'lib/aws-sdk-glue/types.rb', line 8621 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.
8621 8622 8623 8624 8625 8626 8627 8628 |
# File 'lib/aws-sdk-glue/types.rb', line 8621 class DirectSchemaChangePolicy < Struct.new( :enable_update_catalog, :update_behavior, :table, :database) SENSITIVE = [] include Aws::Structure end |