Audit Export GraphQL Reference Guide
Use these audit export configuration commands to manage exporting your audit logs to S3 and ADLS Gen2. To configure an audit export see the Export to S3 or Export to ADLS guides.
Disable a configuration
To disable a configuration, use the disableExportConfiguration mutation:
mutation {
disableExportConfiguration(
id: "<export configuration ID>"
)
{
id
}
}"data": {
"disableExportConfiguration": {
"id": "<export configuration ID>"
}
}Enable a configuration
To enable a disabled configuration, use the enableExportConfiguration mutation:
mutation {
enableExportConfiguration(
id: "<export configuration ID>"
)
{
id
}
}"data": {
"enableExportConfiguration": {
"id": "<export configuration ID>"
}
}Delete a configuration
To delete a configuration, use the deleteExportConfiguration mutation:
Update a configuration
To update an existing configuration, use the mutation for your specific export configuration:
Export to S3 with access key:
updateS3AccessKeyExportConfigurationExport to S3 with assumed role:
updateS3AssumedRoleExportConfigurationExport to ADLS:
updateAdlsSasTokenExportConfiguration
Update the configuration to make small changes, i.e., to rotate the token, rather than deleting the existing one and creating a new one.
Last updated
Was this helpful?

