Class: Aws::LakeFormation::Types::AuditContext
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::AuditContext
- Defined in:
- gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb
Overview
Note:
When making an API call, you may pass AuditContext data as a hash:
{
additional_audit_context: "AuditContextString",
}
A structure used to include auditing information on the privileged API.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#additional_audit_context ⇒ String
The filter engine can populate the 'AdditionalAuditContext' information with the request ID for you to track.
Instance Attribute Details
#additional_audit_context ⇒ String
The filter engine can populate the 'AdditionalAuditContext' information with the request ID for you to track. This information will be displayed in CloudTrail log in your account.
213 214 215 216 217 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 213 class AuditContext < Struct.new( :additional_audit_context) SENSITIVE = [] include Aws::Structure end |