Module Values_2.FolderSource

A folder in Quick Sight.

Sourcetype nonrec t = {
  1. folderId : Values_0.RestrictiveResourceId.t option;
    (*

    The ID of the folder.

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

    The Amazon Resource Name (ARN) for the folder.

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

    A display name for the folder.

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

    The type of folder it is.

    *)
  5. folderPath : Path.t option;
    (*

    An array of ancestor ARN strings for the folder.

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

    The time that the folder was created.

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

    The time that the folder was last updated.

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

    The sharing scope of the folder.

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