Class: Aws::Glue::Types::SchemaChangePolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::SchemaChangePolicy
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass SchemaChangePolicy data as a hash:
{
update_behavior: "LOG", # accepts LOG, UPDATE_IN_DATABASE
delete_behavior: "LOG", # accepts LOG, DELETE_FROM_DATABASE, DEPRECATE_IN_DATABASE
}
A policy that specifies update and deletion behaviors for the crawler.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#delete_behavior ⇒ String
The deletion behavior when the crawler finds a deleted object.
-
#update_behavior ⇒ String
The update behavior when the crawler finds a changed schema.
Instance Attribute Details
#delete_behavior ⇒ String
The deletion behavior when the crawler finds a deleted object.
20784 20785 20786 20787 20788 20789 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 20784 class SchemaChangePolicy < Struct.new( :update_behavior, :delete_behavior) SENSITIVE = [] include Aws::Structure end |
#update_behavior ⇒ String
The update behavior when the crawler finds a changed schema.
20784 20785 20786 20787 20788 20789 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 20784 class SchemaChangePolicy < Struct.new( :update_behavior, :delete_behavior) SENSITIVE = [] include Aws::Structure end |