Skip to main content

free_trial_infos

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

Overview

Namefree_trial_infos
TypeResource
Idaws.inspector2.free_trial_infos

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
accountsarrayAn array of objects that provide Amazon Inspector free trial details for each of the requested accounts.
failed_accountsarrayAn array of objects detailing any accounts that free trial data could not be returned for.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
batch_get_free_trial_infoselectregionGets free trial status for multiple Amazon Web Services accounts.

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

Gets free trial status for multiple Amazon Web Services accounts.

SELECT
accounts,
failed_accounts
FROM aws.inspector2.free_trial_infos
WHERE region = '{{ region }}' -- required
;