Skip to main content

guest_user_history_counts

Creates, updates, deletes, gets or lists a guest_user_history_counts resource.

Overview

Nameguest_user_history_counts
TypeResource
Idaws.wickr.guest_user_history_counts

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
historyarrayA list of historical guest user counts, organized by month and billing period.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_guest_user_history_countselectnetwork_id, regionRetrieves 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.

NameDatatypeDescription
network_idstringThe ID of the Wickr network for which to retrieve guest user history.
regionstringAWS region (default: us-east-1)

SELECT examples

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
;