Module Values_0.DirectSchemaChangePolicySource

A policy that specifies update behavior for the crawler.

Sourcetype nonrec t = {
  1. enableUpdateCatalog : BoxedBoolean.t option;
    (*

    Whether to use the specified update behavior when the crawler finds a changed schema.

    *)
  2. updateBehavior : UpdateCatalogBehavior.t option;
    (*

    The update behavior when the crawler finds a changed schema.

    *)
  3. table : EnclosedInStringProperty.t option;
    (*

    Specifies the table in the database that the schema change policy applies to.

    *)
  4. database : EnclosedInStringProperty.t option;
    (*

    Specifies the database that the schema change policy applies to.

    *)
}
Sourceval make : ?enableUpdateCatalog:??? -> ?updateBehavior:??? -> ?table:??? -> ?database:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BoxedBoolean.t | `Enum of string | `String of EnclosedInStringProperty.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t