minute_usages
Creates, updates, deletes, gets or lists a minute_usages resource.
Overview
| Name | minute_usages |
| Type | Resource |
| Id | aws.groundstation.minute_usages |
Fields
The following fields are returned by SELECT queries:
- get_minute_usage
| Name | Datatype | Description |
|---|---|---|
estimated_minutes_remaining | integer | Estimated number of minutes remaining for an account, specific to the month being requested. |
is_reserved_minutes_customer | boolean | Returns whether or not an account has signed up for the reserved minutes pricing plan, specific to the month being requested. |
total_reserved_minute_allocation | integer | Total number of reserved minutes allocated, specific to the month being requested. |
total_scheduled_minutes | integer | Total scheduled minutes for an account, specific to the month being requested. |
upcoming_minutes_scheduled | integer | Upcoming minutes scheduled for an account, specific to the month being requested. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_minute_usage | select | region | Returns the number of reserved minutes used by account. |
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
- get_minute_usage
Returns the number of reserved minutes used by account.
SELECT
estimated_minutes_remaining,
is_reserved_minutes_customer,
total_reserved_minute_allocation,
total_scheduled_minutes,
upcoming_minutes_scheduled
FROM aws.groundstation.minute_usages
WHERE region = '{{ region }}' -- required
;