Module Values.DescribeVolumesRequestSource

Describes one or more Amazon FSx for NetApp ONTAP or Amazon FSx for OpenZFS volumes.

Sourcetype nonrec t = {
  1. volumeIds : VolumeIds.t option;
    (*

    The IDs of the volumes whose descriptions you want to retrieve.

    *)
  2. filters : VolumeFilters.t option;
    (*

    Enter a filter Name and Values pair to view a select set of volumes.

    *)
  3. maxResults : MaxResults.t option;
  4. nextToken : NextToken.t option;
}
Sourceval make : ?volumeIds:??? -> ?filters:??? -> ?maxResults:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `List of [> `String of VolumeId.t | `Structure of (string * [> `Enum of string | `List of [> `String of VolumeFilterValue.t ] list ]) list ] 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