AWSLogsGetQueryResultsResponse
Objective-C
@interface AWSLogsGetQueryResultsResponse
Swift
class AWSLogsGetQueryResultsResponse
-
The log events that matched the query criteria during the most recent time it ran.
The
results
value is an array of arrays. Each log event is one object in the top-level array. Each of these log event objects is an array offield
/value
pairs.Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSArray<AWSLogsResultField *> *> *_Nullable results;
Swift
var results: [[AWSLogsResultField]]? { get set }
-
Includes 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. These values reflect the full raw results of the query.
Declaration
Objective-C
@property (nonatomic, strong) AWSLogsQueryStatistics *_Nullable statistics;
Swift
var statistics: AWSLogsQueryStatistics? { get set }
-
The status of the most recent running of the query. Possible values are
Cancelled
,Complete
,Failed
,Running
,Scheduled
,Timeout
, andUnknown
.Queries time out after 15 minutes of execution. To avoid having your queries time out, reduce the time range being searched or partition your query into a number of queries.
Declaration
Objective-C
@property (nonatomic) AWSLogsQueryStatus status;
Swift
var status: AWSLogsQueryStatus { get set }