MDAA TS Docs
    Preparing search index...

    Interface AuditDataEventSelector

    Specifies a data event selector for any CloudTrail-supported resource type, rendered as an advanced event selector. Where AuditEventSelector is S3-specific and renders a basic event selector, this covers any resources.type CloudTrail supports (Lambda, DynamoDB, Bedrock AgentCore, and so on).

    CloudTrail accepts exactly one resources.type per selector, so capturing N resource types requires N selectors.

    interface AuditDataEventSelector {
        name: string;
        readWriteType?: AuditDataEventReadWriteType;
        resourceArns?: string[];
        resourceType: string;
    }
    Index

    Properties

    name: string

    Name identifying this selector on the trail.

    Read/write filter. If omitted, both read and write events are captured.

    resourceArns?: string[]

    Resource ARNs to scope the selector to. If omitted, all resources of the type are captured.

    resourceType: string

    The CloudTrail resources.type whose data events will be captured.