Module Values.ConfiguredTableSummarySource

The configured table summary for the objects listed by the request.

Sourcetype nonrec t = {
  1. id : ConfiguredTableIdentifier.t option;
    (*

    The unique ID of the configured table.

    *)
  2. arn : ConfiguredTableArn.t option;
    (*

    The unique ARN of the configured table.

    *)
  3. name : DisplayName.t option;
    (*

    The name of the configured table.

    *)
  4. createTime : Timestamp.t option;
    (*

    The time the configured table was created.

    *)
  5. updateTime : Timestamp.t option;
    (*

    The time the configured table was last updated.

    *)
  6. analysisRuleTypes : ConfiguredTableAnalysisRuleTypeList.t option;
    (*

    The types of analysis rules associated with this configured table.

    *)
  7. analysisMethod : AnalysisMethod.t option;
    (*

    The analysis method for the configured tables. DIRECT_QUERY allows SQL queries to be run directly on this table. DIRECT_JOB allows PySpark jobs to be run directly on this table. MULTIPLE allows both SQL queries and PySpark jobs to be run directly on this table.

    *)
  8. selectedAnalysisMethods : SelectedAnalysisMethods.t option;
    (*

    The selected analysis methods for the configured table summary.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?name:??? -> ?createTime:??? -> ?updateTime:??? -> ?analysisRuleTypes:??? -> ?analysisMethod:??? -> ?selectedAnalysisMethods:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `String of ConfiguredTableIdentifier.t | `Timestamp of Timestamp.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