Skip to main content

enterprise_support_linked_account_charges

Creates, updates, deletes, gets or lists an enterprise_support_linked_account_charges resource.

Overview

Nameenterprise_support_linked_account_charges
TypeResource
Idaws.billing.enterprise_support_linked_account_charges

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
account_idstringThe linked account ID. (pattern: <code>[0-9]{12}</code>)
account_typestringThe type of account.
billable_secondsinteger (int64)The number of billable seconds in the billing period based on when the account was subscribed to Enterprise Support.
linked_time_periodsarrayThe time periods during which this account was linked.
payer_account_idstringThe payer account ID that is authorized to view Enterprise Support data for all accounts in its Support profile. (pattern: <code>[0-9]{12}</code>)
prorated_total_support_eligible_spendstringThe prorated total support-eligible spend based on when the account was subscribed to Enterprise Support.
subscription_time_periodsarrayThe subscription time periods for this account.
support_eligible_spend_by_servicearrayThe support-eligible spend broken down by service.
total_secondsinteger (int64)The total number of seconds in the billing period.
total_support_eligible_reserved_instance_spendstringThe total support-eligible Reserved Instance spend for this account.
total_support_eligible_savings_plan_spendstringThe total support-eligible Savings Plan spend for this account.
total_support_eligible_spendstringThe total support-eligible spend for this account.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_enterprise_support_linked_account_chargesselectregionReturns Support-eligible spend broken down at linked account level.

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 Support-eligible spend broken down at linked account level.

SELECT
account_id,
account_type,
billable_seconds,
linked_time_periods,
payer_account_id,
prorated_total_support_eligible_spend,
subscription_time_periods,
support_eligible_spend_by_service,
total_seconds,
total_support_eligible_reserved_instance_spend,
total_support_eligible_savings_plan_spend,
total_support_eligible_spend
FROM aws.billing.enterprise_support_linked_account_charges
WHERE region = '{{ region }}' -- required
;