AWSLogsQueryStatistics

Objective-C

@interface AWSLogsQueryStatistics

Swift

class AWSLogsQueryStatistics

Contains the number of log events scanned by the query, the number of log events that matched the query criteria, and the total number of bytes in the log events that were scanned.

  • The total number of bytes in the log events scanned during the query.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable bytesScanned;

    Swift

    var bytesScanned: NSNumber? { get set }
  • The number of log events that matched the query string.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable recordsMatched;

    Swift

    var recordsMatched: NSNumber? { get set }
  • The total number of log events scanned during the query.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable recordsScanned;

    Swift

    var recordsScanned: NSNumber? { get set }