Skip to main content

free_trial_statuses_v2s

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

Overview

Namefree_trial_statuses_v2s
TypeResource
Idaws.securityhub.free_trial_statuses_v2s

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
account_idstringThe Amazon Web Services account identifier that the free trial statuses apply to. (pattern: <code>^[0-9]{12}$</code>)
evaluated_atstring (date-time)The date and time at which Security Hub evaluated the free trial statuses for this account. Every status in FreeTrialStatuses reflects this point in time.
free_trial_statusesarrayAn array of free trial statuses, one for each feature that has a free trial period for the account. The array is empty if the account has no free trial to report.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_free_trial_statuses_v2selectregionLists the free trial status of Security Hub features. A delegated Security Hub administrator can list the status for accounts in its organization. Any other account can list the status only for itself. Free trial status remains available after a feature is disabled.

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
regionstringAWS region (default: us-east-1)

SELECT examples

Lists the free trial status of Security Hub features. A delegated Security Hub administrator can list the status for accounts in its organization. Any other account can list the status only for itself. Free trial status remains available after a feature is disabled.

SELECT
account_id,
evaluated_at,
free_trial_statuses
FROM aws.securityhub.free_trial_statuses_v2s
WHERE region = '{{ region }}' -- required
;