remaining_free_trial_days
Creates, updates, deletes, gets or lists a remaining_free_trial_days resource.
Overview
| Name | remaining_free_trial_days |
| Type | Resource |
| Id | aws.guardduty.remaining_free_trial_days |
Fields
The following fields are returned by SELECT queries:
- get_remaining_free_trial_days
| Name | Datatype | Description |
|---|---|---|
accounts | array | The member accounts which were included in a request and were processed successfully. |
unprocessed_accounts | array | The member account that was included in a request but for which the request could not be processed. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_remaining_free_trial_days | select | detector_id, region | Provides the number of days left for each data source used in the free trial period. |
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 |
|---|---|---|
detector_id | string | The unique ID of the detector of the GuardDuty member account. To find the detectorId in the current Region, see the Settings page in the GuardDuty console, or run the ListDetectors API. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_remaining_free_trial_days
Provides the number of days left for each data source used in the free trial period.
SELECT
accounts,
unprocessed_accounts
FROM aws.guardduty.remaining_free_trial_days
WHERE detector_id = '{{ detector_id }}' -- required
AND region = '{{ region }}' -- required
;