Module Values_2.StartMaterializedViewRefreshTaskRunRequestSource

Starts a materialized view refresh task run, for a specified table and columns.

Sourcetype nonrec t = {
  1. catalogId : Values_0.NameString.t;
    (*

    The ID of the Data Catalog where the table reside. If none is supplied, the account ID is used by default.

    *)
  2. databaseName : Values_0.NameString.t;
    (*

    The name of the database where the table resides.

    *)
  3. tableName : Values_0.NameString.t;
    (*

    The name of the table to generate run the materialized view refresh task.

    *)
  4. fullRefresh : Values_0.NullableBoolean.t option;
    (*

    Specifies whether this is a full refresh of the task run.

    *)
}
Sourceval context_ : string
Sourceval make : ?fullRefresh:??? -> catalogId:Values_0.NameString.t -> databaseName:Values_0.NameString.t -> tableName:Values_0.NameString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.NullableBoolean.t | `String of Values_0.NameString.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