Module Values.DescribeRecoverySnapshotsRequestSource

Lists all Recovery Snapshots for a single Source Server.

Sourcetype nonrec t = {
  1. sourceServerID : SourceServerID.t;
    (*

    Filter Recovery Snapshots by Source Server ID.

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

    A set of filters by which to return Recovery Snapshots.

    *)
  3. order : RecoverySnapshotsOrder.t option;
    (*

    The sorted ordering by which to return Recovery Snapshots.

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

    Maximum number of Recovery Snapshots to retrieve.

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

    The token of the next Recovery Snapshot to retrieve.

    *)
}
Sourceval context_ : string
Sourceval make : ?filters:??? -> ?order:??? -> ?maxResults:??? -> ?nextToken:??? -> sourceServerID:SourceServerID.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of StrictlyPositiveInteger.t | `String of SourceServerID.t | `Structure of (string * [> `String of ISO8601DatetimeString.t ]) 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