Module Values.DatasetSchemaSource

Describes the schema for a dataset. For more information on schemas, see CreateSchema.

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. schema : AvroSchema.t option;
    (*

    The schema.

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

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

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

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

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

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

    *)
}
Sourceval make : ?name:??? -> ?schemaArn:??? -> ?schema:??? -> ?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