Module Values.DescribeSnapshotsRequestSource

Contains the inputs for the DescribeSnapshots operation.

Sourcetype nonrec t = {
  1. directoryId : DirectoryId.t option;
    (*

    The identifier of the directory for which to retrieve snapshot information.

    *)
  2. snapshotIds : SnapshotIds.t option;
    (*

    A list of identifiers of the snapshots to obtain the information for. If this member is null or empty, all snapshots are returned using the Limit and NextToken members.

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

    The DescribeSnapshotsResult.NextToken value from a previous call to DescribeSnapshots. Pass null if this is the first call.

    *)
  4. limit : Limit.t option;
    (*

    The maximum number of objects to return.

    *)
}
Sourceval make : ?directoryId:??? -> ?snapshotIds:??? -> ?nextToken:??? -> ?limit:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Limit.t | `List of [> `String of SnapshotId.t ] list | `String of DirectoryId.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