Module Values.DescribeFileSystemsRequestSource

Sourcetype nonrec t = {
  1. maxItems : MaxItems.t option;
    (*

    (Optional) Specifies the maximum number of file systems to return in the response (integer). This number is automatically set to 100. The response is paginated at 100 per page if you have more than 100 file systems.

    *)
  2. marker : Marker.t option;
    (*

    (Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.

    *)
  3. creationToken : CreationToken.t option;
    (*

    (Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.

    *)
  4. fileSystemId : FileSystemId.t option;
    (*

    (Optional) ID of the file system whose description you want to retrieve (String).

    *)
}
Sourceval make : ?maxItems:??? -> ?marker:??? -> ?creationToken:??? -> ?fileSystemId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxItems.t | `String of Marker.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