EventSelector

public struct EventSelector : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • 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.

    Declaration

    Swift

    public let dataResources: [DataResource]?
  • An optional list of service event sources from which you do not want management events to be logged on your trail. In this release, the list can be empty (disables the filter), or it can filter out AWS Key Management Service events by containing “kms.amazonaws.com”. By default, ExcludeManagementEventSources is empty, and AWS KMS events are included in events that are logged to your trail.

    Declaration

    Swift

    public let excludeManagementEventSources: [String]?
  • 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.

    Declaration

    Swift

    public let includeManagementEvents: Bool?
  • 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.

    Declaration

    Swift

    public let readWriteType: ReadWriteType?
  • Undocumented

    Declaration

    Swift

    public init(dataResources: [DataResource]? = nil, excludeManagementEventSources: [String]? = nil, includeManagementEvents: Bool? = nil, readWriteType: ReadWriteType? = nil)