AWSLogsStartQueryRequest

Objective-C

@interface AWSLogsStartQueryRequest

Swift

class AWSLogsStartQueryRequest
  • The end of the time range to query. The range is inclusive, so the specified end time is included in the query. Specified as epoch time, the number of seconds since January 1, 1970, 00:00:00 UTC.

    Declaration

    Objective-C

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

    Swift

    var endTime: NSNumber? { get set }
  • The maximum number of log events to return in the query. If the query string uses the fields command, only the specified fields and their values are returned. The default is 1000.

    Declaration

    Objective-C

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

    Swift

    var limit: NSNumber? { get set }
  • The list of log groups to query. You can include up to 50 log groups.

    You can specify them by the log group name or ARN. If a log group that you’re querying is in a source account and you’re using a monitoring account, you must specify the ARN of the log group here. The query definition must also be defined in the monitoring account.

    If you specify an ARN, the ARN can’t end with an asterisk (*).

    A StartQuery operation must include exactly one of the following parameters: logGroupName, logGroupNames, or logGroupIdentifiers.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable logGroupIdentifiers;

    Swift

    var logGroupIdentifiers: [String]? { get set }
  • The log group on which to perform the query.

    A StartQuery operation must include exactly one of the following parameters: logGroupName, logGroupNames, or logGroupIdentifiers.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable logGroupName;

    Swift

    var logGroupName: String? { get set }
  • The list of log groups to be queried. You can include up to 50 log groups.

    A StartQuery operation must include exactly one of the following parameters: logGroupName, logGroupNames, or logGroupIdentifiers.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable logGroupNames;

    Swift

    var logGroupNames: [String]? { get set }
  • The query string to use. For more information, see CloudWatch Logs Insights Query Syntax.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable queryString;

    Swift

    var queryString: String? { get set }
  • The beginning of the time range to query. The range is inclusive, so the specified start time is included in the query. Specified as epoch time, the number of seconds since January 1, 1970, 00:00:00 UTC.

    Declaration

    Objective-C

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

    Swift

    var startTime: NSNumber? { get set }