Module Values.DescribeDestinationsRequestSource

Lists all your destinations. The results are ASCII-sorted by destination name.

Sourcetype nonrec t = {
  1. destinationNamePrefix : DestinationName.t option;
    (*

    The prefix to match. If you don't specify a value, no prefix filter is applied.

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

    The token for the next set of items to return. (You received this token from a previous call.)

    *)
  3. limit : DescribeLimit.t option;
    (*

    The maximum number of items returned. If you don't specify a value, the default maximum value of 50 items is used.

    *)
}
Sourceval make : ?destinationNamePrefix:??? -> ?nextToken:??? -> ?limit:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of DescribeLimit.t | `String of DestinationName.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