Module Values.GetAnomalyMonitorsRequestSource

Retrieves the cost anomaly monitor definitions for your account. You can filter using a list of cost anomaly monitor Amazon Resource Names (ARNs).

Sourcetype nonrec t = {
  1. monitorArnList : Values.t option;
    (*

    A list of cost anomaly monitor ARNs.

    *)
  2. nextPageToken : NextPageToken.t option;
    (*

    The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

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

    The number of entries that a paginated response contains.

    *)
}
Sourceval make : ?monitorArnList:??? -> ?nextPageToken:??? -> ?maxResults:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of PageSize.t | `List of [> `String of Value.t ] list | `String of NextPageToken.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