Module Values.GetAnomalySubscriptionsRequestSource

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

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

    A list of cost anomaly subscription ARNs.

    *)
  2. monitorArn : GenericString.t option;
    (*

    Cost anomaly monitor ARNs.

    *)
  3. 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.

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

    The number of entries a paginated response contains.

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