guest_user_history_counts
Creates, updates, deletes, gets or lists a guest_user_history_counts resource.
Overview
| Name | guest_user_history_counts |
| Type | Resource |
| Id | aws.wickr.guest_user_history_counts |
Fields
The following fields are returned by SELECT queries:
- get_guest_user_history_count
| Name | Datatype | Description |
|---|---|---|
history | array | A list of historical guest user counts, organized by month and billing period. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_guest_user_history_count | select | network_id, region | Retrieves historical guest user count data for a Wickr network, showing the number of guest users per billing period over the past 90 days. |
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 |
|---|---|---|
network_id | string | The ID of the Wickr network for which to retrieve guest user history. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_guest_user_history_count
Retrieves historical guest user count data for a Wickr network, showing the number of guest users per billing period over the past 90 days.
SELECT
history
FROM aws.wickr.guest_user_history_counts
WHERE network_id = '{{ network_id }}' -- required
AND region = '{{ region }}' -- required
;