Module Values.SchemaSummarySource

The schema summary for the objects listed by the request.

Sourcetype nonrec t = {
  1. name : TableAlias.t option;
    (*

    The name for the schema object.

    *)
  2. type_ : SchemaType.t option;
    (*

    The type of schema object.

    *)
  3. creatorAccountId : AccountId.t option;
    (*

    The unique account ID for the Amazon Web Services account that owns the schema.

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

    The time the schema object was created.

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

    The time the schema object was last updated.

    *)
  6. collaborationId : UUID.t option;
    (*

    The unique ID for the collaboration that the schema belongs to.

    *)
  7. collaborationArn : CollaborationArn.t option;
    (*

    The unique ARN for the collaboration that the schema belongs to.

    *)
  8. analysisRuleTypes : AnalysisRuleTypeList.t option;
    (*

    The types of analysis rules that are associated with this schema object.

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

    The analysis method for the associated schema. 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.

    *)
  10. resourceArn : SchemaResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the schema summary resource.

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

    The selected analysis methods for the schema.

    *)
}
Sourceval make : ?name:??? -> ?type_:??? -> ?creatorAccountId:??? -> ?createTime:??? -> ?updateTime:??? -> ?collaborationId:??? -> ?collaborationArn:??? -> ?analysisRuleTypes:??? -> ?analysisMethod:??? -> ?resourceArn:??? -> ?selectedAnalysisMethods:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `String of TableAlias.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