Module Values.DescribeBackupsRequestSource

The request object for the DescribeBackups operation.

Sourcetype nonrec t = {
  1. backupIds : BackupIds.t option;
    (*

    The IDs of the backups that you want to retrieve. This parameter value overrides any filters. If any IDs aren't found, a BackupNotFound error occurs.

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

    The filters structure. The supported names are file-system-id, backup-type, file-system-type, and volume-id.

    *)
  3. maxResults : MaxResults.t option;
    (*

    Maximum number of backups to return in the response. This parameter value must be greater than 0. The number of items that Amazon FSx returns is the minimum of the MaxResults parameter specified in the request and the service's internal maximum number of items per page.

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

    An opaque pagination token returned from a previous DescribeBackups operation. If a token is present, the operation continues the list from where the returning call left off.

    *)
}
Sourceval make : ?backupIds:??? -> ?filters:??? -> ?maxResults:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `List of [> `String of BackupId.t | `Structure of (string * [> `Enum of string | `List of [> `String of FilterValue.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