Module Values.DescribeRecoveryInstancesRequestSource

Lists all Recovery Instances or multiple Recovery Instances by ID.

Sourcetype nonrec t = {
  1. filters : DescribeRecoveryInstancesRequestFilters.t option;
    (*

    A set of filters by which to return Recovery Instances.

    *)
  2. maxResults : StrictlyPositiveInteger.t option;
    (*

    Maximum number of Recovery Instances to retrieve.

    *)
  3. nextToken : PaginationToken.t option;
    (*

    The token of the next Recovery Instance to retrieve.

    *)
}
Sourceval make : ?filters:??? -> ?maxResults:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of StrictlyPositiveInteger.t | `String of PaginationToken.t | `Structure of (string * [> `List of [> `String of RecoveryInstanceID.t ] list ]) list ]) 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