Module Values_2.ViewVersionSummarySource

A summary of a view version's metadata.

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

    The identifier of the view version.

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

    The Amazon Resource Name (ARN) of the view version.

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

    The description of the view version.

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

    The name of the view version.

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

    The type of the view version.

    *)
  6. version : Values_1.ViewVersion.t option;
    (*

    The sequentially incremented version of the view version.

    *)
  7. versionDescription : Values_1.ViewDescription.t option;
    (*

    The description of the view version.

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