free_trial_infos
Creates, updates, deletes, gets or lists a free_trial_infos resource.
Overview
| Name | free_trial_infos |
| Type | Resource |
| Id | aws.inspector2.free_trial_infos |
Fields
The following fields are returned by SELECT queries:
- batch_get_free_trial_info
| Name | Datatype | Description |
|---|---|---|
accounts | array | An array of objects that provide Amazon Inspector free trial details for each of the requested accounts. |
failed_accounts | array | An array of objects detailing any accounts that free trial data could not be returned for. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
batch_get_free_trial_info | select | region | Gets 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- batch_get_free_trial_info
Gets free trial status for multiple Amazon Web Services accounts.
SELECT
accounts,
failed_accounts
FROM aws.inspector2.free_trial_infos
WHERE region = '{{ region }}' -- required
;