MetricQuery
public struct MetricQuery : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
One or more filters to apply in the request. Restrictions: Any number of filters by the same dimension, as specified in the GroupBy parameter. A single filter for any other dimension in this dimension group.
Declaration
Swift
public let filter: [String : String]?
-
A specification for how to aggregate the data points from a query result. You must specify a valid dimension group. Performance Insights will return all of the dimensions within that group, unless you provide the names of specific dimensions within that group. You can also request that Performance Insights return a limited number of values for a dimension.
Declaration
Swift
public let groupBy: DimensionGroup?
-
The name of a Performance Insights metric to be measured. Valid values for Metric are: db.load.avg - a scaled representation of the number of active sessions for the database engine. db.sampledload.avg - the raw number of active sessions for the database engine.
Declaration
Swift
public let metric: String
-
Undocumented
Declaration
Swift
public init(filter: [String : String]? = nil, groupBy: DimensionGroup? = nil, metric: String)
-
Declaration
Swift
public func validate(name: String) throws