AWSLogsDescribeMetricFiltersRequest
Objective-C
@interface AWSLogsDescribeMetricFiltersRequest
Swift
class AWSLogsDescribeMetricFiltersRequest
-
The prefix to match. CloudWatch Logs uses the value that you set here only if you also include the
logGroupName
parameter in your request.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable filterNamePrefix;
Swift
var filterNamePrefix: String? { get set }
-
The maximum number of items returned. If you don’t specify a value, the default is up to 50 items.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable limit;
Swift
var limit: NSNumber? { get set }
-
The name of the log group.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable logGroupName;
Swift
var logGroupName: String? { get set }
-
Filters results to include only those with the specified metric name. If you include this parameter in your request, you must also include the
metricNamespace
parameter.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable metricName;
Swift
var metricName: String? { get set }
-
Filters results to include only those in the specified namespace. If you include this parameter in your request, you must also include the
metricName
parameter.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable metricNamespace;
Swift
var metricNamespace: String? { get set }
-
The token for the next set of items to return. (You received this token from a previous call.)
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable nextToken;
Swift
var nextToken: String? { get set }