Module Values.DescribeFileSystemsResponseSource

The response object for DescribeFileSystems operation.

Sourcetype nonrec t = {
  1. fileSystems : FileSystems.t option;
    (*

    An array of file system descriptions.

    *)
  2. nextToken : NextToken.t option;
    (*

    Present if there are more file systems than returned in the response (String). You can use the NextToken value in the later request to fetch the descriptions.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequest of BadRequest.t
  2. | `FileSystemNotFound of FileSystemNotFound.t
  3. | `InternalServerError of InternalServerError.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?fileSystems:??? -> ?nextToken:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequest of BadRequest.t | `FileSystemNotFound of FileSystemNotFound.t | `InternalServerError of InternalServerError.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequest of BadRequest.t | `FileSystemNotFound of FileSystemNotFound.t | `InternalServerError of InternalServerError.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of Awso.Botodata.value list | `String of NextToken.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