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.
8615 8616 8617 8618 8619 8620 8621 8622 |
# File 'lib/aws-sdk-glue/types.rb', line 8615 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.
8615 8616 8617 8618 8619 8620 8621 8622 |
# File 'lib/aws-sdk-glue/types.rb', line 8615 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.
8615 8616 8617 8618 8619 8620 8621 8622 |
# File 'lib/aws-sdk-glue/types.rb', line 8615 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.
8615 8616 8617 8618 8619 8620 8621 8622 |
# File 'lib/aws-sdk-glue/types.rb', line 8615 class DirectSchemaChangePolicy < Struct.new( :enable_update_catalog, :update_behavior, :table, :database) SENSITIVE = [] include Aws::Structure end |