Skip to main content

invoice_profiles

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

Overview

Nameinvoice_profiles
TypeResource
Idaws.invoicing.invoice_profiles

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
profilesarrayA list of invoice profiles corresponding to the requested accounts.

Methods

The following methods are available for this resource:

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

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

SELECT examples

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
;