AWSLogsDescribeQueriesRequest
Objective-C
@interface AWSLogsDescribeQueriesRequest
Swift
class AWSLogsDescribeQueriesRequest
-
Limits the returned queries to only those for the specified log group.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable logGroupName;
Swift
var logGroupName: String? { get set }
-
Limits the number of returned queries to the specified number.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable maxResults;
Swift
var maxResults: NSNumber? { get set }
-
The token for the next set of items to return. The token expires after 24 hours.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable nextToken;
Swift
var nextToken: String? { get set }
-
Limits the returned queries to only those that have the specified status. Valid values are
Cancelled
,Complete
,Failed
,Running
, andScheduled
.Declaration
Objective-C
@property (nonatomic) AWSLogsQueryStatus status;
Swift
var status: AWSLogsQueryStatus { get set }