Module Values.SchemaOutputSource

Sourcetype nonrec t = {
  1. description : string option;
    (*

    The description of the schema.

    *)
  2. lastModified : string option;
    (*

    The date and time that schema was modified.

    *)
  3. schemaArn : string option;
    (*

    The ARN of the schema.

    *)
  4. schemaName : string option;
    (*

    The name of the schema.

    *)
  5. schemaVersion : string option;
    (*

    The version number of the schema

    *)
  6. tags : Tags.t option;
  7. type_ : string option;
    (*

    The type of the schema.

    *)
  8. versionCreatedDate : string option;
    (*

    The date the schema version was created.

    *)
}
Sourceval make : ?description:??? -> ?lastModified:??? -> ?schemaArn:??? -> ?schemaName:??? -> ?schemaVersion:??? -> ?tags:??? -> ?type_:??? -> ?versionCreatedDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of string ] * [> `String of string ]) list | `String of string | `Timestamp of string ]) 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