Skip to main content

minute_usages

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

Overview

Nameminute_usages
TypeResource
Idaws.groundstation.minute_usages

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
estimated_minutes_remainingintegerEstimated number of minutes remaining for an account, specific to the month being requested.
is_reserved_minutes_customerbooleanReturns whether or not an account has signed up for the reserved minutes pricing plan, specific to the month being requested.
total_reserved_minute_allocationintegerTotal number of reserved minutes allocated, specific to the month being requested.
total_scheduled_minutesintegerTotal scheduled minutes for an account, specific to the month being requested.
upcoming_minutes_scheduledintegerUpcoming minutes scheduled for an account, specific to the month being requested.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_minute_usageselectregionReturns 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;