Class: Aws::CloudTrail::Types::EventSelector

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudtrail/types.rb

Overview

Note:

When making an API call, you may pass EventSelector data as a hash:

{
  read_write_type: "ReadOnly", # accepts ReadOnly, WriteOnly, All
  include_management_events: false,
  data_resources: [
    {
      type: "String",
      values: ["String"],
    },
  ],
}

Use event selectors to further specify the management and data event settings for your trail. By default, trails created without specific event selectors will be configured to log all read and write management events, and no data events. When an event occurs in your account, CloudTrail evaluates the event selector for all trails. For each trail, if the event matches any event selector, the trail processes and logs the event. If the event doesn’t match any event selector, the trail doesn’t log the event.

You can configure up to five event selectors for a trail.

Instance Attribute Summary collapse

Instance Attribute Details

#data_resourcesArray<Types::DataResource>

CloudTrail supports data event logging for Amazon S3 objects and AWS Lambda functions. You can specify up to 250 resources for an individual event selector, but the total number of data resources cannot exceed 250 across all event selectors in a trail. This limit does not apply if you configure resource logging for all data events.

For more information, see [Data Events] and [Limits in AWS CloudTrail] in the *AWS CloudTrail User Guide*.

[1]: docs.aws.amazon.com/awscloudtrail/latest/userguide/logging-management-and-data-events-with-cloudtrail.html#logging-data-events [2]: docs.aws.amazon.com/awscloudtrail/latest/userguide/WhatIsCloudTrail-Limits.html

Returns:



614
615
616
617
618
619
# File 'lib/aws-sdk-cloudtrail/types.rb', line 614

class EventSelector < Struct.new(
  :read_write_type,
  :include_management_events,
  :data_resources)
  include Aws::Structure
end

#include_management_eventsBoolean

Specify if you want your event selector to include management events for your trail.

For more information, see [Management Events] in the *AWS CloudTrail User Guide*.

By default, the value is ‘true`.

[1]: docs.aws.amazon.com/awscloudtrail/latest/userguide/logging-management-and-data-events-with-cloudtrail.html#logging-management-events

Returns:

  • (Boolean)


614
615
616
617
618
619
# File 'lib/aws-sdk-cloudtrail/types.rb', line 614

class EventSelector < Struct.new(
  :read_write_type,
  :include_management_events,
  :data_resources)
  include Aws::Structure
end

#read_write_typeString

Specify if you want your trail to log read-only events, write-only events, or all. For example, the EC2 ‘GetConsoleOutput` is a read-only API operation and `RunInstances` is a write-only API operation.

By default, the value is ‘All`.

Returns:

  • (String)


614
615
616
617
618
619
# File 'lib/aws-sdk-cloudtrail/types.rb', line 614

class EventSelector < Struct.new(
  :read_write_type,
  :include_management_events,
  :data_resources)
  include Aws::Structure
end