Access Summary Export
Private preview
The access summary export is currently in private preview and is available to select accounts. Contact your Immuta representative for details.
To learn more about how the preview status impacts the feature, see the private preview section.
The access summary export is a feature that exports files to S3 with access information that you can then use to understand what users have access to at this moment in time and why. The access summary exports all the Immuta configuration metadata relevant to analyzing your user's access. Organizations can utilize these exports in a few different ways:
Expose the access summary export as an external table in your data platform for interactive queries.
Use the access summary export in BI dashboards to visualize access.
Support the necessary information for user access reviews or recertifications in tools like SailPoint.
The access summary export is a snapshot of what access in Immuta looks like. For an audit trail of what user actions led to user access, use the Immuta audit logs.
Contents

The access summary export contains 12 files:
policy-metadata: This file contains details about Immuta data and subscription policies.Use this file with
policy-outcomesto understand the policy that granted or restricted data access.Use this file for policy recertification workflows.
user-metadata: This file contains details about Immuta users.Use this file with
policy-outcomesto understand the users that have access to data.
datasource-metadata: This file describes the data source assets registered in Immuta.Use this file with tag metadata to understand how data is tagged.
column-metadata: This file describes the column assets registered in Immuta.Use this file with tag metadata to understand how columns are tagged.
tag-metadata: This file contains details about how data sources are tagged in Immuta.Use this file with
policy-outcomesto understand which tags are driving Immuta policies.
policy-outcomes: This file contains details on the Immuta policies applied to data sources and the resulting access based on those policies.Use this file to understand current access to data.
domain-metadata: This file contains details on Immuta domains.access-requests: This file contains details on access requests in the Request app.Use this file for user access recertification workflows.
request-determinations: This file contains details on the determinations that have been made on access requests in the Request app.request-duas: This files contains details on the data use agreements (DUAs) that requestors signed when making access requests.data-products: This file contains details on data products in the Request app.data-product-assets: This file contains details on the assets within data products in the Request app.
See the Access summary export schema reference guide to see the full file contents.
Using the access summary files for your use case
Join these files together to surface the story of data access in your organization and answer access related questions like these and more:
What users have access to data through a specific policy?
Filter
policy-metadatafor the specific policy.Join to
user-metadatausingglobal_user_idto get the list of names and emails for the recertification report.Join to
policy-outcomesusingpolicy_id.
Which domains have the most users with access to tags that signify highly sensitive data?
Filter
tag-metadatafor high-sensitivity tags and filter bytarget_type:DATA_SOURCE.Join to
domain-metadataviadata_source_id, which is thetarget_idin thetag-metadatatable, to group by domain name.Join to
policy-outcomesviadata_source_idto count the uniqueglobal_user_idsper domain.
If a specific policy is changed, what users' access will be impacted?
Identify the policy in
policy-metadata.Look up all records in
policy-outcomeswhere that policy ID appears in thepolicy_idslist.Cross-reference with
user-metadatato identify the impacted user base.
Who is requesting access to which assets, and what’s the current status?
Filter
access-requestsbytarget_id(ortarget_type) and/ordetermination.Join to
user-metadataonglobal_user_id(access recipient) andglobal_requestor_id(submitter) to get names/emails.Use
request_date,final_determination_date, andexpiration_dateto drive timeliness and lifecycle reporting.
Which users need recertification for a specific data product (or governed data source)?
Filter
access-requeststo the asset you’re recertifying (e.g.,target_type = DATA_PRODUCTandtarget_id = <product_id>).Keep only currently-active grants (e.g.,
determination = APPROVEDandexpiration_date is null OR expiration_date > <as-of-date>).Join to
user-metadataonglobal_user_idto get the user’s name/email for the recertification outreach list.
Accessing the export in S3
Once the access summary export is configured, the access summary is exported daily (at 5AM local time) to your configured S3 bucket in your AWS environment. Each access summary export is the current, full state of the metadata in Immuta, not the diff from the previous run. The access summary export always replaces the one from the previous day.
You can find the access summary export at this location in your bucket: s3://<your-bucket>/<your-path>/<export-name>/v=<version>/<export-name>.parquet
your-bucket: This is the S3 bucket you configure the export to go to.your-path: This is the AWS path you configure the export to go to.export-name: This is the name of the particular file of the access summary export. See the options in the Contents section.version: This is the version of the access summary export. See the Versioning section for additional details.
To find the date of the access summary export data, view the EXPORT_DATE column in each file.
Viewing the export
For the best experience, have any users viewing the access summary export query it through a view on top of an external table pointing to the exports in S3. This future-proofs your process when versions change.
Snowflake example
As an example, if you want to configure an external table in Snowflake for your export.
Set up a storage integration, file format, stage, AWS role, and AWS role policies in S3.
Run the following:
Then create a view on top of that external table by running the following:
Versioning
The access summary export is versioned to ensure that any schema changes can be properly communicated and understood.
During the private preview and public preview, if a new version is created, the old version will stop receiving updates immediately. You will need to immediately update the external table to point to the new version's path and update your view.
However, once this feature become generally available, each new version will run in parallel with the prior version for a reasonable amount of time so that you can switch versions without any downtime.
For example, if a new version of the tag-metadata file was released on 1/12/2026, these would be the exports:
1/11/2026
s3://<your-bucket>/<your-path>/tag-metadata/v=prpr1/tag-metadata.parquet
1/12/2026
s3://<your-bucket>/<your-path>/tag-metadata/v=prpr2/tag-metadata.parquet
1/13/2026
s3://<your-bucket>/<your-path>/tag-metadata/v=prpr2/tag-metadata.parquet
For example, if a new version of the tag-metadata file was released 4/12/2026:
4/11/2026
s3://<your-bucket>/<your-path>/tag-metadata/v=1/tag-metadata.parquet
4/12/2026
s3://<your-bucket>/<your-path>/tag-metadata/v=1/tag-metadata.parquets3://<your-bucket>/<your-path>/tag-metadata/v=2/tag-metadata.parquet
4/13/2026
s3://<your-bucket>/<your-path>/tag-metadata/v=1/tag-metadata.parquets3://<your-bucket>/<your-path>/tag-metadata/v=2/tag-metadata.parquet
...
4/29/2026
s3://<your-bucket>/<your-path>/tag-metadata/v=1/tag-metadata.parquets3://<your-bucket>/<your-path>/tag-metadata/v=2/tag-metadata.parquet
4/30/2026
s3://<your-bucket>/<your-path>/tag-metadata/v=2/tag-metadata.parquet
This versioning plan is not set in stone, and Immuta is open feedback on it.
Private preview program
While the access summary is in private preview, additional metrics will be assessed.
Why are we doing this?
To truly validate the effectiveness of these exports, Immuta must test against real-world scenarios. This is a collaborative phase where both Immuta and your team will have access to your export data to refine the data model and ensure the insights generated are accurate and actionable for your organization.
Immuta employees won’t have access to your actual data stored in your data platform.
The only data Immuta employees can access and potentially will access is the access summary which is metadata already stored in Immuta. Only a small subset of Immuta employees who are directly working on this new capability will be able to access it in adherence to our well established control frameworks.
Privacy and data security
We want to be transparent about how your data is handled during this program:
Metadata only: This feature is strictly limited to metadata already stored in Immuta. Immuta never accesses, processes, or stores your raw business data.
Subprocessor disclosure: Some specific metadata exported by this feature is categorized as privacy-impacting and requires subprocessor notification. As such, that data will be stored and managed within our existing, vetted infrastructure.
Established frameworks: We will utilize our current, SOC2-compliant subprocessors for this storage, ensuring that this data is protected by the same rigorous security standards you already expect from the Immuta platform.
Known limitations
The
policy-outcomestable only reflects global subscription policies. It ignores exceptions to masking policies (essentially column access) and local subscription policies (with the exception of manually added members).If your export job stops working, for example due to auth issues, there are no errors or notifications. You must notice the new files aren’t appearing. Observability may be added in the future. In the meantime, Immuta is monitoring it and can alert you.
You can only configure the export via API; there is no UI.
There is no way to alter the export schedule or increase/decrease its frequency. This may become more configurable, but the speed of the export across many customer environments must be monitored beforehand.
There are no configuration details about sensitive data discovery (SDD) or identifiers in the export files, with the one exception being that the fact tags were placed by SDD is captured.
No support for ADLS export currently.
Next steps
Last updated
Was this helpful?

