enterprise_support_linked_account_charges
Creates, updates, deletes, gets or lists an enterprise_support_linked_account_charges resource.
Overview
| Name | enterprise_support_linked_account_charges |
| Type | Resource |
| Id | aws.billing.enterprise_support_linked_account_charges |
Fields
The following fields are returned by SELECT queries:
- list_enterprise_support_linked_account_charges
| Name | Datatype | Description |
|---|---|---|
account_id | string | The linked account ID. (pattern: <code>[0-9]{12}</code>) |
account_type | string | The type of account. |
billable_seconds | integer (int64) | The number of billable seconds in the billing period based on when the account was subscribed to Enterprise Support. |
linked_time_periods | array | The time periods during which this account was linked. |
payer_account_id | string | The 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_spend | string | The prorated total support-eligible spend based on when the account was subscribed to Enterprise Support. |
subscription_time_periods | array | The subscription time periods for this account. |
support_eligible_spend_by_service | array | The support-eligible spend broken down by service. |
total_seconds | integer (int64) | The total number of seconds in the billing period. |
total_support_eligible_reserved_instance_spend | string | The total support-eligible Reserved Instance spend for this account. |
total_support_eligible_savings_plan_spend | string | The total support-eligible Savings Plan spend for this account. |
total_support_eligible_spend | string | The total support-eligible spend for this account. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_enterprise_support_linked_account_charges | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_enterprise_support_linked_account_charges
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
;