Module Values.ViewSource

A view resource object. Contains metadata and content necessary to render the view.

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

    The identifier of the view.

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

    The Amazon Resource Name (ARN) of the view.

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

    The name of the view.

    *)
  4. version : ViewVersion.t option;
    (*

    The current version of the view.

    *)
  5. content : ViewContent.t option;
    (*

    View content containing all content necessary to render a view except for runtime input data.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?name:??? -> ?version:??? -> ?content:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of ViewVersion.t | `String of ViewId.t | `Structure of (string * [> `List of [> `String of ViewAction.t ] list | `String of ViewInputSchema.t ]) list ]) 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