revenue_statistics_time_series
Creates, updates, deletes, gets or lists a revenue_statistics_time_series resource.
Overview
| Name | revenue_statistics_time_series |
| Type | Resource |
| Id | aws.wafv2.revenue_statistics_time_series |
Fields
The following fields are returned by SELECT queries:
- get_revenue_statistics_time_series
| Name | Datatype | Description |
|---|---|---|
data_points | array | The list of time series data points. |
next_marker | string | When you get a paginated response, this marker indicates that additional results are available. (pattern: <code>.\S.</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_revenue_statistics_time_series | select | region | Retrieves time series data for monetization revenue. Returns data points aggregated at the specified interval for the given time window. This operation is only available for CLOUDFRONT scope. The maximum supported time window is 90 days. When no CurrencyMode filter is provided, results default to REAL. To retrieve test data, include a CurrencyMode filter with the value TEST. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_revenue_statistics_time_series
Retrieves time series data for monetization revenue. Returns data points aggregated at the specified interval for the given time window. This operation is only available for CLOUDFRONT scope. The maximum supported time window is 90 days. When no CurrencyMode filter is provided, results default to REAL. To retrieve test data, include a CurrencyMode filter with the value TEST.
SELECT
data_points,
next_marker
FROM aws.wafv2.revenue_statistics_time_series
WHERE region = '{{ region }}' -- required
;