- Mais recentes
- Mais votos
- Mais comentários
There is no direct “account filter” parameter, but inclusion is controlled by:
- CUR Configuration in the Management Account • CUR must be configured to include linked accounts. • The CUR file includes line_item_usage_account_id and bill_payer_account_id fields that identify which account the usage belongs to.
- Source Stack Athena Queries • The source stack uses Athena queries to transform CUR data. • These queries can be modified to filter out specific accounts using WHERE clauses like:
WHERE line_item_usage_account_id NOT IN ('AccountA', 'AccountB')
- S3 Replication and Glue Catalog • If both accounts are replicating the same CUR files to their own buckets and defining overlapping Glue tables, they may ingest the same data twice.
Hello,
As mentioned above, there is no direct “account filter” parameter as such.
However, as the CUR file includes the columns like "line_item_usage_account_id" and "bill_payer_account_id" that identify which account the usage belongs to.
However, the source stack uses Athena queries to transform CUR data. These queries can be modified to filter out specific accounts using WHERE clauses like:
WHERE line_item_usage_account_id NOT IN ('AccountA', 'AccountB') Or WHERE line_item_usage_account_id != 'AccountA'
If you would like to discuss more on this, please feel free to open a support case with AWS using the following link and we would be happy to help.
Link to raise case: https://support.console.aws.amazon.com/support/home#/case/create
Thanks!
Conteúdo relevante
- feita há 5 meses
- AWS OFICIALAtualizada há 6 meses
