Module Values.DatasetSchemaSummarySource

Provides a summary of the properties of a dataset schema. For a complete listing, call the DescribeSchema API.

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

    The name of the schema.

    *)
  2. schemaArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the schema.

    *)
  3. creationDateTime : Date.t option;
    (*

    The date and time (in Unix time) that the schema was created.

    *)
  4. lastUpdatedDateTime : Date.t option;
    (*

    The date and time (in Unix time) that the schema was last updated.

    *)
  5. domain : Domain.t option;
    (*

    The domain of a schema that you created for a dataset in a Domain dataset group.

    *)
}
Sourceval make : ?name:??? -> ?schemaArn:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> ?domain:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Name.t | `Timestamp of Date.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