Module Values_2.ViewSummarySource

A summary of a view's metadata.

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

    The identifier of the view.

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

    The Amazon Resource Name (ARN) of the view.

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

    The name of the view.

    *)
  4. type_ : Values_1.ViewType.t option;
    (*

    The type of the view.

    *)
  5. status : Values_1.ViewStatus.t option;
    (*

    Indicates the view status as either SAVED or PUBLISHED. The PUBLISHED status will initiate validation on the content.

    *)
  6. description : Values_1.ViewDescription.t option;
    (*

    The description of the view.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?name:??? -> ?type_:??? -> ?status:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_1.ViewId.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