Module Values_1.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 : Values_0.ARN.t option;
    (*

    The Amazon Resource Name (ARN) of the view.

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

    The name of the view.

    *)
  4. status : ViewStatus.t option;
    (*

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

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

    The type of the view - CUSTOMER_MANAGED.

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

    The description of the view.

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

    Current version of the view.

    *)
  8. versionDescription : ViewDescription.t option;
    (*

    The description of the version.

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

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

    *)
  10. tags : Values_0.TagMap.t option;
    (*

    The tags associated with the view resource (not specific to view version).

    *)
  11. createdTime : Values_0.Timestamp.t option;
    (*

    The timestamp of when the view was created.

    *)
  12. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    Latest timestamp of the UpdateViewContent or CreateViewVersion operations.

    *)
  13. viewContentSha256 : ViewContentSha256.t option;
    (*

    Indicates the checksum value of the latest published view content.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?name:??? -> ?status:??? -> ?type_:??? -> ?description:??? -> ?version:??? -> ?versionDescription:??? -> ?content:??? -> ?tags:??? -> ?createdTime:??? -> ?lastModifiedTime:??? -> ?viewContentSha256:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of ViewVersion.t | `Map of ([> `String of string ] * [> `String of string ]) list | `String of ViewId.t | `Structure of (string * [> `List of [> `String of ViewAction.t ] list | `String of ViewInputSchema.t ]) list | `Timestamp of Values_0.Timestamp.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