invoice_profiles
Creates, updates, deletes, gets or lists an invoice_profiles resource.
Overview
| Name | invoice_profiles |
| Type | Resource |
| Id | aws.invoicing.invoice_profiles |
Fields
The following fields are returned by SELECT queries:
- batch_get_invoice_profile
| Name | Datatype | Description |
|---|---|---|
profiles | array | A list of invoice profiles corresponding to the requested accounts. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
batch_get_invoice_profile | select | region | This gets the invoice profile associated with a set of accounts. The accounts must be linked accounts under the requester management account organization. |
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_invoice_profile
This gets the invoice profile associated with a set of accounts. The accounts must be linked accounts under the requester management account organization.
SELECT
profiles
FROM aws.invoicing.invoice_profiles
WHERE region = '{{ region }}' -- required
;