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.
8486 8487 8488 8489 8490 8491 8492 8493 |
# File 'lib/aws-sdk-glue/types.rb', line 8486 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.
8486 8487 8488 8489 8490 8491 8492 8493 |
# File 'lib/aws-sdk-glue/types.rb', line 8486 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.
8486 8487 8488 8489 8490 8491 8492 8493 |
# File 'lib/aws-sdk-glue/types.rb', line 8486 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.
8486 8487 8488 8489 8490 8491 8492 8493 |
# File 'lib/aws-sdk-glue/types.rb', line 8486 class DirectSchemaChangePolicy < Struct.new( :enable_update_catalog, :update_behavior, :table, :database) SENSITIVE = [] include Aws::Structure end |