Module Values_2.FolderSummarySource

A summary of information about an existing Quick Sight folder.

Sourcetype nonrec t = {
  1. arn : Values_0.Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the folder.

    *)
  2. folderId : Values_0.RestrictiveResourceId.t option;
    (*

    The ID of the folder.

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

    The display name of the folder.

    *)
  4. folderType : Values_1.FolderType.t option;
    (*

    The type of folder.

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

    The time that the folder was created.

    *)
  6. lastUpdatedTime : Values_0.Timestamp.t option;
    (*

    The time that the folder was last updated.

    *)
  7. sharingModel : Values_1.SharingModel.t option;
    (*

    The sharing scope of the folder.

    *)
}
Sourceval make : ?arn:??? -> ?folderId:??? -> ?name:??? -> ?folderType:??? -> ?createdTime:??? -> ?lastUpdatedTime:??? -> ?sharingModel:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.Arn.t | `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