Skip to main content

remaining_free_trial_days

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

Overview

Nameremaining_free_trial_days
TypeResource
Idaws.guardduty.remaining_free_trial_days

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
accountsarrayThe member accounts which were included in a request and were processed successfully.
unprocessed_accountsarrayThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
get_remaining_free_trial_daysselectdetector_id, regionProvides 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.

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

SELECT examples

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
;