A structure containing the Lake Formation audit context.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-audit-context-schema.json", "title": "AuditContext", "description": "A structure containing the Lake Formation audit context.", "type": "object", "properties": { "AdditionalAuditContext": { "allOf": [ { "$ref": "#/components/schemas/AuditContextString" }, { "description": "A string containing the additional audit context information." } ] }, "RequestedColumns": { "allOf": [ { "$ref": "#/components/schemas/AuditColumnNamesList" }, { "description": "The requested columns for audit." } ] }, "AllColumnsRequested": { "allOf": [ { "$ref": "#/components/schemas/NullableBoolean" }, { "description": "All columns request for audit." } ] } } }