Module Values.DescribeFileSystemsResponseSource

Returns the description of a specific Amazon EFS file system if either the file system CreationToken or the FileSystemId is provided. Otherwise, it returns descriptions of all file systems owned by the caller's Amazon Web Services account in the Amazon Web Services Region of the endpoint that you're calling. When retrieving all file system descriptions, you can optionally specify the MaxItems parameter to limit the number of descriptions in a response. This number is automatically set to 100. If more file system descriptions remain, Amazon EFS returns a NextMarker, an opaque token, in the response. In this case, you should send a subsequent request with the Marker request parameter set to the value of NextMarker. To retrieve a list of your file system descriptions, this operation is used in an iterative process, where DescribeFileSystems is called first without the Marker and then the operation continues to call it with the Marker parameter set to the value of the NextMarker from the previous response until the response has no NextMarker. The order of file systems returned in the response of one DescribeFileSystems call and the order of file systems returned across the responses of a multi-call iteration is unspecified. This operation requires permissions for the elasticfilesystem:DescribeFileSystems action.

Sourcetype nonrec t = {
  1. marker : Marker.t option;
    (*

    Present if provided by caller in the request (String).

    *)
  2. fileSystems : FileSystemDescriptions.t option;
    (*

    An array of file system descriptions.

    *)
  3. nextMarker : Marker.t option;
    (*

    Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent 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 : ?marker:??? -> ?fileSystems:??? -> ?nextMarker:??? -> 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 [> `Structure of (string * [> `Boolean of Encrypted.t | `Double of ProvisionedThroughputInMibps.t | `Enum of string | `Integer of MountTargetCount.t | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of AwsAccountId.t | `Structure of (string * [> `Enum of string | `Long of FileSystemSizeValue.t | `Timestamp of Timestamp.t ]) list | `Timestamp of Timestamp.t ]) list ] list | `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